:root {
    /* Colors */
    --bg-color: #ffffff;
    --text-color: #2F3E46;
    --text-sub: #5f6c7b;
    --accent-color: #86349D;
    /* Fallback for gradient */
    --accent-gradient: linear-gradient(135deg, #86349D 0%, #B54588 100%);
    --secondary-color: #f8f9fa;
    --border-color: #e9ecef;

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', 'Noto Sans JP', sans-serif;

    /* Spacing */
    --container-width: 1400px;
    --section-padding: 120px;

    /* Transitions */
    --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem;
    /* mix-blend-mode: difference; Removed */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #111111;
    /* Match footer background */
    display: flex;
    align-items: center;
}

.logo img {
    height: 24px;
    /* Approx 1/3 of 40px */
    width: auto;
}

/* Standard BtoB Header */
.site-header.btob-header {
    background-color: transparent;
    padding: 1.5rem 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.btob-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.site-nav a {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: var(--accent-color);
}

.site-nav a::before {
    display: none;
}

.btn-nav {
    background-color: #111;
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.btn-nav:hover {
    background-color: var(--accent-color);
    opacity: 1;
}

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #111;
    transition: all 0.3s ease;
}

.site-header.nav-open .hamburger-menu span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.site-header.nav-open .hamburger-menu span:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .hamburger-menu span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

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

    .site-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .site-nav a {
        font-size: 1.5rem;
        color: #111;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

.hero-content {
    text-align: center;
    z-index: 1;
    /* mix-blend-mode: difference; Removed for white theme */
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    color: #000;
    /* Pure black for hero title */
    font-weight: 700;
    opacity: 1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    /* Increased weight */
    opacity: 1;
    /* Removed opacity */
    color: #333;
    /* Darker grey */
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: var(--text-color);
}

/* NEWS Section - Brutalist Redesign */
.news-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
}

.section-label-large {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.8;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.view-all-link:hover {
    color: var(--accent-color);
    gap: 1rem;
}

.news-list-brutalist {
    display: flex;
    flex-direction: column;
}

.news-item-row {
    display: grid;
    grid-template-columns: 200px 1fr 50px;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.news-item-row::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.4s ease;
}

.news-item-row:hover::before {
    width: 100%;
}

.news-item-row:hover {
    padding-left: 1rem;
    background-color: rgba(0, 0, 0, 0.02);
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-date {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.news-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-sub);
}

.news-title {
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-item-row:hover .news-title {
    color: var(--accent-color);
}

.news-arrow {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.news-item-row:hover .news-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .news-item-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .news-arrow {
        display: none;
    }

    .section-label-large {
        font-size: 3rem;
    }
}

/* ABOUT Section - Kinetic Typography */
.about-section {
    padding: 10rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* .about-mission-wrapper {
    max-width: 1000px;
    margin: 0 auto 8rem;
} */

.mission-header {
    margin-bottom: 4rem;
    position: relative;
}

.mission-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-title {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-color);
    letter-spacing: -0.03em;
}

.line-reveal {
    display: block;
}

.mission-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-lead {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-color);
}

.highlight-text {
    background: linear-gradient(120deg, rgba(134, 52, 157, 0.1) 0%, rgba(134, 52, 157, 0) 100%);
    padding: 0 0.2em;
}

.mission-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-sub);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .mission-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-title {
        font-size: 2.5rem;
    }
}

.about-intro-large {
    margin-bottom: 8rem;
}

.about-visual-section {
    margin-bottom: 6rem;
}

.about-visual-section.mt-large {
    margin-top: 10rem;
}

.visual-header {
    margin-bottom: 4rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
}

.visual-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
}

.visual-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.visual-subtitle {
    font-size: 1.1rem;
    color: var(--text-sub);
    font-weight: 500;
}

/* Approach Flow */
.approach-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
    padding: 4rem 0;
}

.flow-line {
    position: absolute;
    top: 50px;
    /* Adjust based on icon size */
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #2F3E46);
    z-index: 0;
    opacity: 0.3;
}

.flow-step {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Subpage Header */
.subpage-header {
    padding: 12rem 0 8rem;
    background-color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.subpage-title {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.subpage-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.step-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.flow-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.approach-summary {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 4rem;
    line-height: 1.8;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Style Grid */
.style-grid-wrapper {
    background: #f8f9fa;
    padding: 4rem;
    border-radius: 20px;
    position: relative;
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.style-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(134, 52, 157, 0.1);
    border-color: var(--accent-color);
}

.style-card.highlight {
    background: var(--accent-gradient);
    color: #fff;
}

.style-card.highlight .style-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.style-card.highlight h4,
.style-card.highlight span {
    color: #fff;
}

.style-icon {
    width: 50px;
    height: 50px;
    background: rgba(134, 52, 157, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.style-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.style-card span {
    font-size: 0.9rem;
    color: var(--text-sub);
}

.style-center-text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

@media (max-width: 900px) {
    .approach-flow {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .flow-line {
        width: 2px;
        height: 100%;
        left: 30px;
        /* Align with icon center */
        top: 0;
    }

    .flow-step {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 0;
        background: transparent;
    }

    .step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

/* Company Section - Spec Sheet Redesign */
.company-section {
    padding: 10rem 0;
    background-color: #fff;
}

.company-header {
    margin-bottom: 6rem;
    border-bottom: 2px solid #000;
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.company-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-sub);
    letter-spacing: 0.1em;
}

.company-spec-sheet {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ddd;
}

.spec-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
    background: transparent;
    border-radius: 0;
    align-items: baseline;
}

.spec-row:hover {
    background-color: #fafafa;
    transform: none;
    box-shadow: none;
    border-color: #ddd;
}

.spec-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-color);
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.spec-value {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    font-weight: 400;
}

.spec-row:last-child {
    grid-column: auto;
}

.business-list-spec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    list-style: none;
    padding: 0;
}

.business-list-spec li {
    position: relative;
    padding-left: 1.2rem;
}

.business-list-spec li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }

    .spec-label {
        font-size: 0.9rem;
        color: var(--text-sub);
    }

    .business-list-spec {
        grid-template-columns: 1fr;
    }

    .company-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

/* Business Pillars */
.business-pillars {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.business-pillar {
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.pillar-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    line-height: 0.8;
}

.pillar-title-group h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pillar-title-group p {
    font-size: 1.1rem;
    color: var(--text-sub);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.category-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.category-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.category-content li {
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.category-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.btn-link {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.category-card:hover .btn-link::after {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .pillar-header {
        flex-direction: column;
        gap: 1rem;
    }

    .pillar-number {
        font-size: 3rem;
    }

    .pillar-title-group h3 {
        font-size: 1.5rem;
    }

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

/* Services Section - Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: 1.5rem;
}

.bento-item {
    background-color: var(--secondary-color);
    padding: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 0;
    /* Reset padding for image layout */
}

.bento-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.bento-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.bento-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* .bento-item.large removed to make all items same size */

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bento-item p {
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 2rem;
}

.bento-link {
    align-self: flex-start;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.bento-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.bento-item:hover .bento-link::after {
    transform: translateX(5px);
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 0;
    text-align: left;
    transition: var(--transition-base);
    border-radius: 8px;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 2rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card p {
    margin-bottom: 2rem;
    color: var(--text-sub);
    font-size: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: var(--transition-base);
    cursor: pointer;
    border-radius: 4px;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Company Section */
.company-section {
    background-color: #fff;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.company-info-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.company-label {
    font-weight: 600;
    color: var(--text-sub);
}

@media (max-width: 768px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-info-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Contact Section */
.contact-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    border: 1px solid var(--border-color);
    background: linear-gradient(45deg, var(--secondary-color), transparent);
    border-radius: 16px;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-text {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-sub);
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .site-nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Contact Section - Refined */
.contact-section {
    padding: 10rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title-en {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

.contact-subtitle-jp {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: var(--text-color);
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-sub);
    margin-bottom: 4rem;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.about-link-wrapper,
.company-more-link {
    margin-top: 3rem;
    text-align: right;
}

.btn-text-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-text-arrow:hover {
    border-bottom-color: var(--accent-color);
    gap: 1rem;
}

/* Footer - Awwwards Style */
.site-footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 8rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand-large {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo-img {
    width: 150px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer-slogan {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 0.9;
    color: #333;
    letter-spacing: -0.02em;
}

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

.nav-col-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
}

.footer-nav-col li {
    margin-bottom: 0.5rem;
}

.footer-nav-col a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-col a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem !important;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.footer-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(237, 192, 35, 0.3);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-slogan {
        font-size: 3rem;
    }

    .footer-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero-tagline {
    font-size: 1.7rem;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* =========================================
   Awwwards Style Mission Section
   ========================================= */
.aww-mission-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    padding: 6rem 0;
}

.aww-mission-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.aww-mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.aww-mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(47, 62, 70, 0.6) 100%);
}

.aww-mission-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.aww-mission-label-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.aww-mission-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--accent-color);
    transform: rotate(-90deg);
    transform-origin: left center;
    white-space: nowrap;
    position: absolute;
    left: -2rem;
}

.aww-mission-content {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.aww-mission-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aww-mission-desc {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

@media (max-width: 900px) {
    .aww-mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aww-mission-label {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        display: block;
    }

    .aww-mission-content {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 2rem;
    }
}

/* =========================================
   Awwwards Style Values Section
   ========================================= */
.aww-values-section {
    padding: 10rem 0;
    background-color: #f8f9fa;
}

.aww-values-header {
    text-align: center;
    margin-bottom: 6rem;
}

.aww-values-subtitle {
    font-size: 1rem;
    color: var(--text-sub);
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.aww-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.aww-value-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.aww-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(134, 52, 157, 0.2);
}

.aww-value-icon {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.4s ease;
}

.aww-value-card:hover .aww-value-icon {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}

.aww-value-content {
    position: relative;
}

.aww-value-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #f0f0f0;
    position: absolute;
    top: -3rem;
    right: -1rem;
    z-index: 0;
    transition: color 0.4s ease;
}

.aww-value-card:hover .aww-value-num {
    color: rgba(134, 52, 157, 0.1);
}

.aww-value-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.aww-value-text {
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* =========================================
   Awwwards Style Approach Section
   ========================================= */
.aww-approach-section {
    padding: 10rem 0;
    background-color: #fff;
    overflow: hidden;
}

.aww-section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.aww-section-number {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    line-height: 1;
}

.aww-section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.aww-section-subtitle {
    font-size: 1rem;
    color: var(--text-sub);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.aww-approach-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.aww-flow-card {
    flex: 1;
    min-width: 200px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aww-flow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.aww-flow-card.highlight {
    background: linear-gradient(135deg, #fff 0%, #fcf0ff 100%);
    border-color: rgba(134, 52, 157, 0.3);
}

.aww-flow-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.aww-flow-card:hover .aww-flow-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotate(360deg);
}

.aww-flow-step {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-sub);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.aww-flow-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.aww-flow-desc {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.aww-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
}

@media (max-width: 900px) {
    .aww-approach-flow {
        flex-direction: column;
        align-items: center;
    }

    .aww-flow-card {
        width: 100%;
        max-width: 400px;
    }

    .aww-flow-arrow {
        transform: rotate(90deg);
        margin: -1rem 0;
    }
}

/* =========================================
   Awwwards Style Style Section
   ========================================= */
.aww-style-section {
    padding: 10rem 0;
    background-color: #f8f9fa;
}

.aww-style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.aww-style-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.aww-style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.aww-style-card.highlight-card {
    background: #111;
    color: #fff;
}

.aww-style-card.highlight-card h3,
.aww-style-card.highlight-card p {
    color: #fff;
}

.aww-style-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.aww-style-card.highlight-card .aww-style-icon {
    color: #fff;
}

.aww-style-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.aww-style-card p {
    font-size: 0.95rem;
    color: var(--text-sub);
}

.aww-style-footer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.aww-style-footer p {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.8;
}

/* =========================================
   Awwwards Style Services Page
   ========================================= */
.aww-service-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.aww-service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.aww-service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.aww-service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.aww-service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.aww-service-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
}

.aww-service-hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.aww-service-detail-section {
    padding: 8rem 0;
    background-color: #fff;
}

.aww-service-detail-section.reverse {
    background-color: #f8f9fa;
}

.aww-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.aww-service-detail-section.reverse .aww-service-row {
    direction: rtl;
}

.aww-service-detail-section.reverse .aww-service-info {
    direction: ltr;
}

.aww-service-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}

.aww-service-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.aww-service-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-sub);
    margin-bottom: 2rem;
}

.aww-service-list {
    list-style: none;
    padding: 0;
}

.aww-service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.aww-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.aww-service-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.aww-service-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.aww-service-visual:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .aww-service-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .aww-service-detail-section.reverse .aww-service-row {
        direction: ltr;
    }
}

/* =========================================
   Awwwards Style News Page
   ========================================= */
.aww-news-section {
    padding: 6rem 0 10rem;
    background-color: #fff;
}

.aww-news-list {
    border-top: 1px solid #eee;
}

.aww-news-item {
    display: grid;
    grid-template-columns: 150px 100px 1fr 50px;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.aww-news-item:hover {
    background-color: #fcfcfc;
    padding-left: 1rem;
    padding-right: 1rem;
}

.aww-news-date {
    font-family: var(--font-heading);
    color: var(--text-sub);
    font-weight: 500;
}

.aww-news-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    font-weight: 700;
}

.aww-news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.aww-news-arrow {
    display: flex;
    justify-content: flex-end;
    color: #ddd;
    transition: color 0.3s ease;
}

.aww-news-item:hover .aww-news-arrow {
    color: var(--accent-color);
}

.aww-pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.aww-pagination a,
.aww-pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aww-pagination a {
    color: var(--text-color);
    background-color: #f0f0f0;
}

.aww-pagination a:hover {
    background-color: #e0e0e0;
}

.aww-pagination span.current {
    background-color: var(--accent-color);
    color: #fff;
}

@media (max-width: 768px) {
    .aww-news-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .aww-news-arrow {
        display: none;
    }
}

/* =========================================
   Awwwards Style Contact Page
   ========================================= */
.aww-contact-page-section {
    padding: 6rem 0 10rem;
    background-color: #fff;
}

.aww-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.aww-contact-heading {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.aww-contact-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-sub);
    margin-bottom: 4rem;
}

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

.aww-contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.aww-contact-detail-item .label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-sub);
    letter-spacing: 0.1em;
}

.aww-contact-detail-item .value {
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    line-height: 1.6;
}

.aww-contact-form-wrapper {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 24px;
}

.aww-contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 0.3rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(134, 52, 157, 0.1);
}

.select-wrapper {
    position: relative;
}

.btn-submit {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

@media (max-width: 900px) {
    .aww-contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .aww-contact-form-wrapper {
        padding: 2rem;
    }
}

/* =========================================
   Awwwards Style Individual Service Pages
   ========================================= */

/* Hero Section */
.aww-ind-service-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.aww-ind-service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.aww-ind-service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transform: scale(1.05);
    /* Slight zoom for parallax feel */
}

.aww-ind-service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.aww-ind-service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.aww-ind-service-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.aww-ind-service-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.aww-ind-service-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* Concept Section */
.aww-ind-concept-section {
    padding: 10rem 0;
    background-color: #fff;
}

.aww-ind-concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.aww-ind-concept-lead {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #000, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aww-ind-concept-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-sub);
}

.aww-ind-concept-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.aww-concept-card {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.aww-concept-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.aww-concept-card .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.aww-concept-card .label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-color);
}

/* Menu Section (Bento Grid) */
.aww-ind-menu-section {
    padding: 8rem 0;
    background-color: #f0f2f5;
}

.aww-section-title.center {
    text-align: center;
    margin-bottom: 4rem;
}

.aww-ind-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.aww-ind-menu-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    text-decoration: none;
    color: inherit;
}

.aww-ind-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.aww-ind-menu-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.aww-ind-menu-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.aww-ind-menu-card p {
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 1.7;
}

/* Web Tools UI - Premium Redesign */

/* Buttons */
.btn-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-tool:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-tool.primary {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-tool.primary:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    opacity: 0.95;
    color: #fff;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 8px;
    background: #f0f2f5;
    border: none;
    color: var(--text-sub);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-sm:hover {
    background: #e4e6eb;
    color: var(--text-color);
}

/* Inputs & Textareas */
.json-textarea,
input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f2f5;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: var(--text-color);
}

.json-textarea:focus,
input[type="text"]:focus,
input[type="number"]:focus,
select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1);
}

.json-textarea {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    resize: vertical;
}

/* Custom Range Slider */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    margin: 1rem 0;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    margin-top: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #e4e6eb;
    border-radius: 2px;
}

/* Custom Radio & Checkbox */
.radio-group,
.checkbox-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

input[type="radio"],
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

input[type="checkbox"] {
    border-radius: 6px;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
    border-color: var(--accent-color);
    background: var(--accent-color);
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

/* Tool Container Improvements */
.tool-container {
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.tool-header {
    margin-bottom: 4rem;
}

.tool-title {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tool-container {
        padding: 2rem;
    }

    .tool-title {
        font-size: 2rem;
    }

    .radio-group {
        gap: 1rem;
    }
}

/* Process Section */
.aww-ind-process-section {
    padding: 10rem 0;
    background-color: #fff;
}

.aww-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.aww-process-step {
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 150px;
}

.aww-process-step .step-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.aww-process-step h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.aww-process-step p {
    font-size: 0.9rem;
    color: var(--text-sub);
}

.aww-process-arrow {
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .aww-ind-concept-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .aww-process-steps {
        flex-direction: column;
    }

    .aww-process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

/* Button Text Arrow */
.btn-text-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-text-arrow i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    width: 1.2em;
    height: 1.2em;
}

.btn-text-arrow:hover {
    color: var(--text-color);
}

.btn-text-arrow:hover i {
    transform: translateX(5px);
}

.mt-4 {
    margin-top: 1rem;
}

/* Tool SEO Content */
.tool-seo-content {
    max-width: 800px;
    margin: 6rem auto 0;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tool-seo-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.tool-seo-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.tool-seo-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tool-seo-content h3::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.tool-seo-content p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
    color: var(--text-color);
    font-size: 1.05rem;
}

.tool-seo-content ul {
    margin-bottom: 2rem;
    padding-left: 0;
    list-style: none;
}

.tool-seo-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.tool-seo-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.tool-seo-content strong {
    color: #000;
    font-weight: 700;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}