/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Colors - Company Profile Inspired */
    --color-primary: #D5587B;
    --color-primary-dark: #B8466A;
    --color-primary-light: #F8BBD0;
    --color-purple: #6B5B95;
    --color-purple-dark: #4A4A8A;
    --color-orange: #E6905E;
    --color-orange-light: #FFAB91;
    --color-secondary: #333333;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-bg: #FFFFFF;
    --color-bg-light: #FAFAFA;
    --color-bg-lighter: #FAFAFA;
    --color-border: #E0E0E0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6B5B95 0%, #D5587B 50%, #E6905E 100%);
    --gradient-hero: linear-gradient(120deg, rgba(107, 91, 149, 0.75) 0%, rgba(139, 123, 168, 0.78) 25%, rgba(213, 88, 123, 0.75) 50%, rgba(230, 144, 94, 0.78) 75%, rgba(255, 152, 0, 0.75) 100%);
    --gradient-accent: linear-gradient(135deg, #D5587B 0%, #E6905E 100%);
    --gradient-purple-pink: linear-gradient(135deg, #6B5B95 0%, #D5587B 100%);
    --gradient-pink-orange: linear-gradient(135deg, #D5587B 0%, #E6905E 100%);
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

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

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-secondary);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent__content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-consent__content a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.cookie-consent__button {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-base);
}

.cookie-consent__button:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-orange) 100%);
}

@media (max-width: 768px) {
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

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

.header__logo .logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.header__logo .logo-img {
    height: 65px;
    width: auto;
    display: block;
    transition: var(--transition-base);
}

.header__logo a:hover .logo-img {
    transform: translateY(-2px);
    opacity: 0.85;
}

.header__nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

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

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

.nav-cta {
    background: var(--gradient-accent);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-orange) 100%);
    transform: translateY(-2px);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header__hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 3px;
    transition: var(--transition-base);
}

@media (max-width: 968px) {
    .header {
        display: none;
    }
    
    .header__nav {
        display: none;
    }
    
    .header__hamburger {
        display: flex;
        position: fixed;
        top: 2rem;
        right: 2rem;
        z-index: 1001;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.75rem;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
    }
    
    .header__hamburger span {
        background-color: var(--color-secondary);
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    max-height: 100vh;
}

.mobile-menu__list {
    list-style: none;
    padding: 2rem 0;
    text-align: center;
    width: 100%;
}

.mobile-menu__list li {
    border-bottom: none;
    margin-bottom: 1rem;
}

.mobile-menu__list a {
    display: block;
    padding: 1rem 2rem;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.mobile-menu__list a:hover {
    background-color: transparent;
    color: var(--color-primary);
    transform: scale(1.05);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__content {
    z-index: 2;
}

.hero__title {
    margin-bottom: 2rem;
}

.hero__title-main {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero__title-sub {
    display: block;
    font-size: 1.75rem;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}

.hero__description {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}

.hero__cta {
    margin-top: 2rem;
}

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

.hero__circles {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.circle--1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(107, 91, 149, 0.8), rgba(233, 30, 99, 0.8));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    filter: blur(60px);
}

.circle--2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(255, 152, 0, 0.8));
    top: 30%;
    right: 10%;
    animation-delay: 2s;
    filter: blur(60px);
}

.circle--3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.8), rgba(255, 171, 145, 0.8));
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
    filter: blur(60px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background-color: #FFFFFF;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

@media (max-width: 968px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero__title-main {
        font-size: 3.5rem;
    }
    
    .hero__title-sub {
        font-size: 1.25rem;
    }
    
    .hero__visual {
        height: 300px;
    }
    
    .circle--1 {
        width: 200px;
        height: 200px;
    }
    
    .circle--2 {
        width: 150px;
        height: 150px;
    }
    
    .circle--3 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero__title-main {
        font-size: 2.5rem;
    }
    
    .hero__title-sub {
        font-size: 1rem;
    }
    
    .hero__description {
        font-size: 0.95rem;
    }
}

/* ========================================
   Mission Section
   ======================================== */
.mission {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
}

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

.mission__item {
    text-align: center;
}

.mission__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.mission__text {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

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

/* ========================================
   Section Header
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .section-header__title {
        font-size: 2rem;
    }
}

/* ========================================
   About Intro Section
   ======================================== */
.about-intro {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

.about-intro__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro__text {
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-intro__text .text-large {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-intro__text p {
    margin-bottom: 1.25rem;
}

.about-intro__text strong {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.logo-visual {
    text-align: center;
}

.logo-visual__circles {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 350px;
    margin: 0 auto 2rem;
}

.logo-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-align: center;
    padding: 1rem;
    box-shadow: var(--shadow-md);
}

.logo-circle--1 {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.logo-circle--2 {
    background: var(--gradient-purple-pink);
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.logo-circle--3 {
    background: var(--gradient-pink-orange);
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.logo-visual__description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .about-intro__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .logo-visual__circles {
        max-width: 280px;
        height: 280px;
    }
    
    .logo-circle {
        width: 140px;
        height: 140px;
        font-size: 0.8rem;
    }
}

/* ========================================
   Services Overview - Card Style
   ======================================== */
.services-overview {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-light);
}

.services-flow__intro {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.service-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2.5rem;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card__icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card__icon i {
    font-size: 2rem;
    color: white;
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.service-card__subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-bg-light);
}

.service-card__description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.service-card__details {
    margin-top: auto;
}

.service-card__details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-card__details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card__details li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-card__details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.services-overview__cta {
    text-align: center;
}

@media (max-width: 968px) {
    .service-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
        margin: 1rem 0;
    }
    
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-flow__intro {
        font-size: 0.95rem;
        margin-bottom: 3rem;
    }
    
    .service-card__title {
        font-size: 1.3rem;
    }
    
    .service-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card__icon i {
        font-size: 1.75rem;
    }
}

/* ========================================
   Strength Overview
   ======================================== */
.strength-overview {
    padding: var(--spacing-xl) 0;
}

.strength-overview__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.strength-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
}

.strength-item__number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.strength-item__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.strength-item__description {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.strength-overview__cta {
    text-align: center;
}

@media (max-width: 768px) {
    .strength-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .strength-item__number {
        font-size: 2.5rem;
    }
}

/* ========================================
   Cases Overview
   ======================================== */
.cases-overview {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cases-overview .section-header__label {
    color: rgba(255, 255, 255, 0.9);
    background: none;
    -webkit-text-fill-color: initial;
}

.cases-overview .section-header__title {
    color: white;
}

.cases-overview__description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* ========================================
   Contact CTA Section
   ======================================== */
.contact-cta {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-light);
}

.contact-cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
    .contact-cta__title {
        font-size: 1.75rem;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

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

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-orange) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
    background-color: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn i {
    transition: transform 0.3s ease;
}

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

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn--large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--color-secondary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.footer__logo-img {
    height: 55px;
    width: auto;
    margin-bottom: 0.5rem;
    display: block;
    filter: brightness(0) invert(1);
}

.footer__tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer__info {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer__info p {
    margin-bottom: 0.5rem;
}

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

.footer__nav-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary-light);
}

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

.footer__nav-column li {
    margin-bottom: 0.75rem;
}

.footer__nav-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer__nav-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer__nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   Strength Detail Page
   ======================================== */
.page-hero {
    padding: 10rem 0 6rem;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Strengths Cards Section */
.strengths-cards {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.strength-card {
    background-color: white;
    border: 2px solid var(--color-border);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.strength-card__header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-bg-light);
}

.strength-card__number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.strength-card__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0;
}

.strength-card__intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-weight: 500;
}

.strength-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 2.5rem 0 1.25rem;
}

.strength-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.strength-card ul {
    list-style: none;
    margin: 2rem 0;
}

.strength-card li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--color-text);
}

.strength-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.3rem;
}

.strength-card .highlight-box {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(255, 152, 0, 0.08) 100%);
    border-left: 4px solid var(--color-primary);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0 0;
}

.strength-card .highlight-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 0 1rem;
}

.strength-card .highlight-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    color: var(--color-text);
}

/* Comparison Table */
.comparison {
    margin: 3rem 0;
    overflow-x: auto;
}

.comparison__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison__table thead {
    background-color: var(--color-bg-light);
}

.comparison__table th,
.comparison__table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison__table th {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 1rem;
}

.comparison__table tbody tr:last-child td {
    border-bottom: none;
}

.comparison__table tbody tr:hover {
    background-color: var(--color-bg-lighter);
}

.comparison__header--essence {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison__cell--essence {
    background-color: #FFF3F8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .strength-card {
        padding: 2rem;
    }
    
    .strength-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .strength-card__number {
        font-size: 3rem;
    }
    
    .strength-card__title {
        font-size: 1.75rem;
    }
    
    .page-hero__title {
        font-size: 2.25rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

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

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}
