:root {
    --primary-color: #2E5DB1; /* 柔らかい青色 */
    --primary-dark: #1F4B98;
    --primary-light: #4D7BC9;
    --secondary-color: #F8ABA6; /* サクラのピンク色を保持 */
    --secondary-dark: #f59994;
    --secondary-light: #FBC3BE;
    --accent-color: #F5F8FC; /* 非常に明るい青色 */
    --accent-dark: #E5EBF5;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --gray-light: #F9FAFC; 
    --gray: #EAEEF5;
    --section-padding: 5rem 2rem;
    --border-radius: 8px;
    --border-radius-large: 12px;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Meiryo, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

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

.section {
    padding: var(--section-padding);
    position: relative;
}

.required {
    color: #ff4d4d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(248, 171, 166, 0.3);
}

.btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(248, 171, 166, 0.4);
}

.btn-primary {
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(46, 93, 177, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(46, 93, 177, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 93, 177, 0.3);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

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

/* Header Styles */
header {
    padding: 1.5rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.logo img {
    width: 250px;
    height: 34px;
    display: block;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.header-nav ul {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.header-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.header-nav a:hover {
    color: var(--primary-color);
}

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

.contact-info {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info p {
    margin-bottom: 0;
}

.contact-info .phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    padding: 7rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
}

.shape-1 {
    top: 5%;
    right: -8%;
    width: 45%;
    height: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(245, 248, 252, 0.5) 100%);
    opacity: 0.7;
    transform: rotate(-15deg);
    animation: float 10s ease-in-out infinite alternate;
    box-shadow: inset 0 0 30px rgba(46, 93, 177, 0.1);
}

.shape-2 {
    bottom: -15%;
    left: -8%;
    width: 30%;
    height: 30%;
    background: linear-gradient(135deg, rgba(248, 171, 166, 0.2) 0%, rgba(248, 171, 166, 0.05) 100%);
    animation: float 15s ease-in-out infinite alternate-reverse;
    box-shadow: inset 0 0 20px rgba(248, 171, 166, 0.1);
}

.shape-3 {
    top: 40%;
    right: 25%;
    width: 12vw;
    height: 12vw;
    background: linear-gradient(135deg, rgba(46, 93, 177, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border: 2px solid rgba(46, 93, 177, 0.05);
    animation: float 8s ease-in-out infinite alternate;
    z-index: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-15deg);
    }
    100% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.hero-content {
    max-width: 600px;
    position: relative;
    padding-right: 1rem;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.hero-badge.achievement {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    font-size: 1.1rem;
    padding: 0.8rem 1.6rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(248, 171, 166, 0.4);
    transform: scale(1.1);
}

.hero-badge.emphasis {
    background-color: var(--primary-color);
    color: var(--white);
}

.hero-badge i {
    margin-right: 0.5rem;
    color: var(--primary-dark);
}

.hero-badge.achievement i {
    color: var(--white);
    font-size: 1.2rem;
}

.hero-badge strong {
    font-weight: 800;
    margin-left: 0.3rem;
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge.achievement:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 171, 166, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.title-accent {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: rgba(248, 171, 166, 0.3);
    z-index: -1;
    border-radius: 5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 500;
}

.hero-usp {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.usp-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.usp-icon i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.usp-text {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-support-text {
    font-size: 0.85rem;
    margin-top: 0.7rem;
    color: var(--text-light);
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 171, 166, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(248, 171, 166, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(248, 171, 166, 0);
    }
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 2rem;
    padding-left: 2.5rem;
    padding-bottom: 4rem;
    margin-bottom: 1.5rem;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
    width: 20%;
    height: 75%;
    background-color: var(--accent-color);
    opacity: 0.5;
    z-index: 1;
    border-radius: 30px;
}

.hero-image-main {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    border: 5px solid rgba(255, 255, 255, 0.8);
}

.hero-image-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 93, 177, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 15px;
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper:hover .hero-image-main {
    transform: perspective(1000px) rotateY(0deg) translateZ(0) translateY(-10px);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.18);
}

.hero-image-caption {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(46, 93, 177, 0.9), rgba(77, 123, 201, 0.9));
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 0 20px;
    color: white;
    text-align: right;
    z-index: 3;
    transform: translate(0, 5px);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.attorney-name {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.attorney-title {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-trust-indicators {
    position: absolute;
    top: 5%;
    left: -8%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 4;
    animation: slideInLeft 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateX(-20px);
}

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

.trust-item {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.3rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--primary-dark);
    border: 1px solid rgba(46, 93, 177, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.trust-item i {
    margin-right: 0.7rem;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px) translateX(5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    background-color: #FFFFFF;
    border-color: rgba(46, 93, 177, 0.15);
}

.trust-item:hover i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.hero-testimonial {
    position: absolute;
    bottom: -50px;
    right: 40px;
    background-color: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    border: none;
    border-top: 3px solid var(--secondary-color);
    z-index: 3;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.98);
}

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

.testimonial-badge {
    display: inline-block;
    background-color: var(--secondary-light);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    position: relative;
    top: -0.6rem;
    left: -0.6rem;
}

.testimonial-badge i {
    margin-right: 0.3rem;
    color: var(--primary-color);
}

.testimonial-stars {
    margin-bottom: 0.8rem;
    color: #FFD700;
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
    animation: starPulse 2s infinite alternate;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.testimonial-stars i:nth-child(1) { --i: 0; }
.testimonial-stars i:nth-child(2) { --i: 1; }
.testimonial-stars i:nth-child(3) { --i: 2; }
.testimonial-stars i:nth-child(4) { --i: 3; }
.testimonial-stars i:nth-child(5) { --i: 4; }

@keyframes starPulse {
    0% {
        opacity: 0.7;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 500;
    line-height: 1.5;
    font-size: 0.95rem;
}

.hero-testimonial span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: right;
}

.industry-banner {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 1.5rem 0;
    margin-top: 6rem;
    width: 100%;
    position: relative;
    z-index: 3;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.industry-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 20%, 
        rgba(255, 255, 255, 0.3) 80%, 
        transparent 100%);
}

.industry-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-title {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.banner-title:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.banner-title i {
    margin-right: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.banner-title:hover i {
    transform: scale(1.1) rotate(10deg);
}

.industry-icons {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.industry-icon {
    color: var(--white);
    text-align: center;
    opacity: 0.85;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0.6rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    min-width: 85px;
}

.industry-icon:hover {
    opacity: 1;
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.industry-icon::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.4s ease;
}

.industry-icon:hover::after {
    width: 80%;
}

.industry-icon i {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.industry-icon:hover i {
    transform: scale(1.1);
    color: var(--secondary-light);
}

.industry-icon span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.industry-icon:hover span {
    color: white;
    font-weight: 600;
}

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

/* Target Clients Section */
.target-clients {
    background-color: var(--gray-light);
    position: relative;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.client-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.client-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.client-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Problem & Solution Section */
.problem {
    background-color: var(--white);
    position: relative;
}

.problem::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 5% 20%, var(--accent-color) 0%, transparent 20%),
        radial-gradient(circle at 95% 80%, var(--accent-color) 0%, transparent 20%);
    opacity: 0.7;
    z-index: 0;
}

.problem-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-dark);
    font-weight: 700;
}

.problem-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-solution-pairs {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.problem-solution-pair {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.problem-card, .solution-card {
    flex: 1;
    padding: 1.8rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.problem-card {
    border-top: 4px solid var(--primary-color);
    margin-right: -1rem;
    z-index: 1;
    background: linear-gradient(to right, var(--white) 90%, rgba(255, 255, 255, 0.9) 100%);
}

.solution-card {
    border-top: 4px solid var(--secondary-color);
    margin-left: -1rem;
    z-index: 0;
    background: linear-gradient(to left, var(--white) 90%, rgba(255, 255, 255, 0.9) 100%);
}

.problem-card:hover, .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    gap: 0.8rem;
}

.problem-icon, .solution-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.problem-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.solution-icon i {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.problem-card h3, .solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--primary-dark);
    font-weight: 600;
}

.problem-card p, .solution-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.connection-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.connection-arrow i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.problem-badge, .solution-badge {
    position: absolute;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.problem-badge {
    right: 1rem;
    background-color: rgba(46, 93, 177, 0.1);
    color: var(--primary-color);
}

.solution-badge {
    right: 1rem;
    background-color: rgba(248, 171, 166, 0.2);
    color: var(--secondary-dark);
}

.problem-badge i, .solution-badge i {
    margin-right: 0.4rem;
}

.solution-stats {
    background-color: var(--accent-color);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-block;
    margin-bottom: 0.8rem;
}

/* Problem Solution Responsive Styles */
@media (max-width: 992px) {
    .problem-solution-pair {
        flex-direction: column;
        gap: 2rem;
    }
    
    .problem-card, .solution-card {
        width: 100%;
        margin: 0;
        max-width: 700px;
    }
    
    .connection-arrow {
        transform: rotate(90deg);
    }
    
    .problem-card {
        border-left: 4px solid var(--primary-color);
        border-top: none;
        background: var(--white);
    }
    
    .solution-card {
        border-left: 4px solid var(--secondary-color);
        border-top: none;
        background: var(--white);
    }
}

@media (max-width: 576px) {
    .problem-solution-pair {
        gap: 1.5rem;
    }
    
    .problem-card, .solution-card {
        padding: 1.5rem;
        min-height: 180px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .problem-card h3, .solution-card h3 {
        text-align: center;
    }
    
    .problem-card p, .solution-card p {
        text-align: center;
    }
    
    .problem-badge, .solution-badge {
        position: static;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .solution-stats {
        text-align: center;
        display: block;
    }
    
    .connection-arrow {
        width: 40px;
        height: 40px;
    }
    
    .connection-arrow i {
        font-size: 1.2rem;
    }
}

@media (max-width: 375px) {
    .problem-solution-pair {
        gap: 1rem;
    }
    
    .problem-card, .solution-card {
        padding: 1.2rem;
        min-height: 160px;
    }
    
    .problem-icon, .solution-icon {
        width: 40px;
        height: 40px;
    }
    
    .problem-icon i, .solution-icon i {
        font-size: 1.2rem;
    }
    
    .problem-card h3, .solution-card h3 {
        font-size: 1.1rem;
    }
    
    .problem-card p, .solution-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .solution-stats {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .connection-arrow {
        width: 36px;
        height: 36px;
    }
    
    .connection-arrow i {
        font-size: 1rem;
    }
}

.problem-card p, .solution-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

.solution-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: var(--accent-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.solution-cta-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Features Section */
.features {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.feature-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    padding: 0;
    background-color: var(--accent-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.stat-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.feature-intro {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-badge {
    background-color: var(--accent-color);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.feature-badge:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-badge:hover i {
    color: var(--white);
}

.feature-badge i {
    margin-right: 0.7rem;
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
}

.feature-cta {
    margin-top: 2rem;
}

/* Services Section */
.services {
    background-color: var(--gray-light);
    position: relative;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.service-card-body p {
    margin-bottom: 1.8rem;
    color: var(--text-light);
    flex-grow: 1;
}

.service-card-body .btn {
    align-self: flex-start;
}

/* Process Section */
.process {
    background-color: var(--white);
    position: relative;
}

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

.process-step {
    background: linear-gradient(to bottom, var(--white) 0%, #FBFCFD 100%);
    border-radius: var(--border-radius-large);
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 93, 177, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.process-step:hover::before {
    opacity: 1;
}

.step-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-image img {
    width: 100px;
    height: 100px;
    display: block;
    object-fit: contain;
}

.step-content {
    width: 100%;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.process-step p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.step-features {
    text-align: left;
    margin-top: 1rem;
    background-color: rgba(46, 93, 177, 0.03);
    padding: 1rem;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.step-features li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.4;
}

.step-features li:last-child {
    margin-bottom: 0;
}

.step-features li i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.process-detail {
    margin-top: 4rem;
    background-color: var(--accent-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.process-detail h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

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

.step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 35px;
    height: calc(100% - 50px);
    width: 2px;
    background-color: var(--primary-light);
    opacity: 0.5;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(46, 93, 177, 0.2);
}

.step-content {
    background-color: var(--white);
    padding: 1.8rem;
    border-radius: var(--border-radius);
    flex-grow: 1;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.process-cta {
    margin-top: 3rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--gray-light);
    position: relative;
}

.pricing-overview {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.price-range {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price-details {
    text-align: left;
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.price-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.price-details p:last-child {
    margin-bottom: 0;
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto 3rem;
    border-collapse: collapse;
    width: 100%;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.pricing-table th, .pricing-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
}

.pricing-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table td {
    border-bottom: 1px solid var(--gray);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:nth-child(even) {
    background-color: var(--gray-light);
}

.pricing-note {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: var(--box-shadow);
}

.pricing-note h3 {
    margin-bottom: 1.2rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.3rem;
}

.pricing-note p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-cta {
    margin-top: 2rem;
}

/* Stats & Charts Section */
.stats-charts {
    background: linear-gradient(180deg, #FBFCFD 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

.stats-charts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(46, 93, 177, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(248, 171, 166, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.charts-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.chart-card {
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

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

.chart-card h3 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.chart-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 300px;
    margin: 0 auto;
    padding: 1rem 0;
}

.wide-card {
    grid-column: 1;
}

.chart-card.tech-field-chart {
    background: linear-gradient(to right, var(--white) 0%, #FBFCFD 100%);
    border-left-color: var(--secondary-color);
}

.chart-card.tech-field-chart h3::after {
    background-color: var(--primary-color);
}

.stats-highlight {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.stats-highlight .stat-item {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 3rem 5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(46, 93, 177, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-highlight .stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    transform: rotate(45deg);
}

.stats-highlight .stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
}

.stats-highlight .stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 93, 177, 0.4);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-number span {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .charts-container {
        grid-template-columns: 1fr;
    }
    
    .wide-card {
        grid-column: span 1;
    }
    
    .chart-wrapper {
        height: 220px; /* さらに縮小 */
    }
    
    .chart-card {
        margin-bottom: 1.5rem; /* カード間の余白を追加 */
    }
}

@media (max-width: 768px) {
    .stats-highlight .stat-item {
        padding: 2.5rem 3rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .chart-card {
        padding: 1.2rem; /* さらにパディングを減らす */
    }
    
    .chart-wrapper {
        height: 200px; /* モバイルでさらに縮小 */
    }
    
    .chart-card h3 {
        font-size: 1.1rem; /* モバイルでタイトルを小さく */
        margin-bottom: 1rem;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    position: relative;
}

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

.testimonial-card {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-content i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.7;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    background-color: var(--gray-light);
    position: relative;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Staff Section */
.staff {
    background-color: var(--white);
    position: relative;
}

.staff-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.staff-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

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

.staff-img {
    flex-shrink: 0;
    margin-right: 2rem;
}

.staff-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--white);
}

.staff-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.staff-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.staff-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.staff-section {
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray);
}

.staff-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.staff-section-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    display: inline-block;
}

.staff-section ul {
    padding-left: 1rem;
    margin-bottom: 0;
}

.staff-section li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.staff-section li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.staff-section p {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-box {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-methods {
    display: flex;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.contact-method {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--accent-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-features h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-feature {
    display: flex;
    margin-bottom: 1.5rem;
}

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

.contact-feature i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.2rem;
}

.contact-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-feature p {
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    -webkit-appearance: none; /* Fixes iOS styling */
    appearance: none;
}

@media (max-width: 576px) {
    .form-group input, .form-group textarea, .form-group select {
        padding: 0.8rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 93, 177, 0.1);
}

.form-group input.error, .form-group textarea.error, .form-group select.error {
    border-color: #ff4d4d;
    background-color: rgba(255, 77, 77, 0.05);
}

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

.form-privacy {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-privacy label {
    margin-left: 0.5rem;
    font-weight: normal;
}

.form-privacy p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 5rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-value-props {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: var(--white);
}

.value-prop i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.value-prop strong {
    font-weight: 700;
    color: var(--secondary-light);
    margin-left: 0.3rem;
}

.cta-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin: 0 auto;
    max-width: 1000px;
}

.cta-benefits h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.benefit-list li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--secondary-color);
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-action .btn {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
}

.contact-alternative {
    text-align: center;
}

.contact-alternative p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.phone-link {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--secondary-light);
}

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

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 3rem;
    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.9rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.floating-cta .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.floating-cta .btn i {
    font-size: 1.2rem;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.client-card, .process-step, .testimonial-card, .service-card, .problem-item, .step, .staff-card {
    opacity: 1; /* 初期値を1に変更 */
    transform: translateY(0); /* 初期値を0に変更 */
    transition: all 0.7s ease;
}

.stat-item, .contact-method, .badge, .feature-badge {
    opacity: 1; /* 初期値を1に変更 */
    transform: translateX(0); /* 初期値を0に変更 */
    transition: all 0.5s ease;
}

.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 200;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 150;
    padding: 6rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    display: block;
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray);
}

.mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-stats {
        order: 2;
    }
    
    .feature-content {
        order: 1;
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 8rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
        order: 1;
    }
    
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badges, .hero-cta {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-usp {
        justify-content: center;
    }
    
    .hero-visual {
        margin: 0 auto;
        max-width: 70%;
        margin-top: 0;
    }
    
    .hero-image-wrapper {
        padding: 2rem 2rem 5rem;
        margin-bottom: 2rem;
    }
    
    .hero-image-wrapper::before {
        top: 5%;
        left: 5%;
        width: 15%;
        height: 65%;
    }
    
    .hero-image-caption {
        padding: 0.7rem 1.2rem;
        border-radius: 0 0 0 15px;
    }
    
    .attorney-name {
        font-size: 1.2rem;
    }
    
    .attorney-title {
        font-size: 0.8rem;
    }
    
    .hero-trust-indicators {
        position: absolute;
        top: 5%;
        left: 0;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        width: 100%;
        animation: fadeInDown 1s ease-out forwards;
        opacity: 0;
        transform: translateY(-15px);
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .trust-item {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }
    
    .hero-testimonial {
        position: absolute;
        right: auto;
        left: 50%;
        bottom: -20px;
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        max-width: 90%;
        border-top: 3px solid var(--secondary-color);
        animation: fadeInUp 0.8s ease-out forwards;
    }
    
    .testimonial-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 0;
    }
    
    .testimonial-stars {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .hero-testimonial span {
        text-align: center;
    }
    
    .industry-banner {
        margin-top: 3rem;
        padding: 1.8rem 0;
    }
    
    .industry-banner-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .banner-title {
        margin-bottom: 0.5rem;
        width: auto;
    }
    
    .industry-icons {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .industry-icon {
        min-width: 75px;
    }
    
    .staff-profiles {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-column, .solution-column {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .logo img {
        width: 175px;
        height: 24px;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .contact-info {
        display: none;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .hero {
        padding-top: 95px;
    }
    
    .hero::before {
        width: 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .feature-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        aspect-ratio: 4 / 3;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-header h2 {
        font-size: 2rem;
    }
    
    .cta-header p {
        font-size: 1.1rem;
    }
    
    .cta-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .value-prop {
        font-size: 1rem;
    }
    
    .value-prop i {
        font-size: 1.2rem;
    }
    
    .benefit-list li {
        font-size: 1rem;
    }
    
    .cta-benefits h3 {
        font-size: 1.3rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-testimonial {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 1rem auto 0;
        max-width: 90%;
        display: none;
    }
    
    .client-card h3 {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .feature-badges {
        justify-content: center;
    }
    
    .footer-container {
        gap: 2rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo img {
        width: 175px;
        height: 24px;
    }
    
    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .mobile-contact-info .phone {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-contact-info .btn {
        width: 100%;
    }
    
    .cta-value-props {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 1.5rem;
    }
    
    .hero {
        padding-top: 85px;
        padding-bottom: 4rem;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-visual {
        display: block;
        max-width: 80%;
        margin: 0 auto;
        order: 2;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .title-accent::after {
        height: 6px;
        bottom: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-badge {
        width: 90%;
        justify-content: center;
    }
    
    .hero-usp {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .usp-item {
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta {
        width: 100%;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .cta-support-text {
        text-align: center;
    }
    
    .hero-image-wrapper {
        padding: 0;
        margin-bottom: 0;
        position: relative;
    }
    
    .hero-image-wrapper::before {
        display: none;
    }
    
    .hero-image-main {
        border-radius: 15px;
        border-width: 3px;
        width: 100%;
        height: auto;
    }
    
    .hero-image-main::after {
        border-radius: 12px;
    }
    
    .hero-image-caption {
        position: relative;
        bottom: auto;
        right: auto;
        padding: 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.95);
        text-align: center;
        margin-top: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .attorney-name {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
        font-weight: 700;
        color: var(--primary-dark);
    }
    
    .attorney-title {
        font-size: 0.9rem;
        color: var(--text-color);
        font-weight: 500;
    }
    
    .hero-trust-indicators {
        display: none;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    
    .hero-testimonial {
        display: none;
    }
    
    .testimonial-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 0;
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
    
    .hero-testimonial p {
        font-size: 0.9rem;
        padding-left: 0;
    }
    
    .testimonial-stars {
        display: flex;
        justify-content: center;
    }
    
    .hero-testimonial span {
        text-align: center;
    }
    
    .industry-banner {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .industry-icons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .industry-icon {
        font-size: 0.75rem;
        padding: 0.5rem;
        min-width: auto;
    }
    
    .industry-icon i {
        font-size: 1.2rem;
    }
    
    .banner-title {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 1.5rem;
        margin-right: 0;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .staff-header {
        flex-direction: column;
        text-align: center;
    }
    
    .staff-img {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .staff-info {
        text-align: center;
    }
    
    .staff-badges {
        justify-content: center;
    }
    
    .contact-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-feature i {
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .pricing-table {
        font-size: 0.85rem;
    }
    
    .pricing-table th, .pricing-table td {
        padding: 0.8rem;
    }
    
    .hero-note {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-note p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-feature {
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-feature h3 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-features {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .shape-1, .shape-2, .shape-3 {
        opacity: 0.4;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    .hero-note p {
        font-size: 0.8rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        width: 95%;
    }
    
    .usp-icon {
        width: 35px;
        height: 35px;
    }
    
    .usp-text {
        font-size: 0.9rem;
    }
    
    .hero-visual {
        max-width: 100%;
    }
    
    .hero-image-main {
        transform: none !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hero-image-wrapper:hover .hero-image-main {
        transform: none !important;
    }
    
    .hero-trust-indicators {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .trust-item {
        width: auto;
        max-width: 100%;
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
    
    .hero-testimonial {
        padding: 1rem;
        bottom: -25px;
        width: 95%;
    }
    
    .hero-testimonial p {
        font-size: 0.85rem;
    }
    
    .industry-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-banner {
        padding: 1.2rem 0;
        margin-top: 3.5rem;
    }
    
    .industry-icon i {
        font-size: 1.1rem;
    }
    
    .industry-icon span {
        font-size: 0.7rem;
    }
    
    .banner-title {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .banner-title i {
        font-size: 1.1rem;
    }
    
    .hero-feature h3 {
        font-size: 1rem;
    }
    
    .hero-feature p {
        font-size: 0.8rem;
    }
    
    .contact-method i {
        font-size: 1.5rem;
    }
    
    .contact-method h3 {
        font-size: 1rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .contact-note {
        font-size: 0.8rem;
    }
    
    .client-card, .process-step, .testimonial-card, .service-card, .problem-item, .step, .staff-card {
        padding: 1.5rem;
    }
    
    .floating-cta {
        bottom: 0.8rem;
        right: 0.8rem;
    }
    
    .floating-cta .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .shape-1, .shape-2, .shape-3 {
        opacity: 0.2;
    }
    
    .hero {
        padding-bottom: 7rem;
    }
    
    .hero-image-wrapper {
        padding-bottom: 5rem;
    }
}