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

:root {
    --primary-brown: #8B4513;
    --secondary-brown: #A0522D;
    --light-brown: #DEB887;
    --dark-brown: #654321;
    --cream: #F5F5DC;
    --white: #FFFFFF;
    --gray: #060606;
    --light-gray: #F8F8F8;
    --shadow: 0 4px 6px rgba(139, 69, 19, 0.1);
    --shadow-hover: 0 8px 15px rgba(139, 69, 19, 0.2);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--white);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 82, 45, 0.1) 100%),
        url('https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 82, 45, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(222, 184, 135, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(245, 245, 220, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-brown);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

.mobile-nav-menu {
    list-style: none;
    padding: 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    padding-bottom: 1rem;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-brown);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: var(--primary-brown);
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-brown) 100%);
    background-image: 
        linear-gradient(135deg, rgba(245, 245, 220, 0.95) 0%, rgba(222, 184, 135, 0.95) 100%),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(160, 82, 45, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(222, 184, 135, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-brown);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-brown);
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-price {
    color: var(--gray);
    font-size: 0.9rem;
}

.price {
    color: var(--primary-brown);
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--secondary-brown);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

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

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-brown);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    backdrop-filter: blur(5px);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(160, 82, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

.service-card h3 {
    color: var(--dark-brown);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.3rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

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

/* PC Support Card Special Styling */
.pc-support-card {
    border: 2px solid var(--primary-brown);
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.pc-support-card .service-icon {
    background-color: var(--primary-brown);
}

.pc-support-card .service-icon i {
    color: var(--white);
}

/* PC Support Side Banner */
.pc-support-banner {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 80px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    color: var(--white);
    border-radius: 10px 0 0 10px;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pc-support-banner:hover {
    transform: translateY(-50%) translateX(-10px);
}

.banner-content {
    padding: 1rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.banner-icon {
    font-size: 1.5rem;
    color: var(--white);
}

.banner-text {
    flex: 1;
}

.banner-text h4 {
    font-size: 0.8rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

/* PC Support Modal Styles */
.pc-support-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

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

.option-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.option-content {
    flex: 1;
}

.option-content h4 {
    color: var(--dark-brown);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.option-content p {
    color: var(--gray);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.option-content .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Full Order Made Section */
.full-order {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
    position: relative;
}

.full-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(160, 82, 45, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.full-order-content {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.full-order-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 3px solid var(--primary-brown);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.full-order-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.full-order-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.full-order-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.full-order-title h3 {
    color: var(--dark-brown);
    font-size: 2rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.full-order-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.full-order-price .price {
    color: var(--primary-brown);
    font-size: 2.5rem;
    font-weight: 700;
}

.full-order-price .price-note {
    color: var(--gray);
    font-size: 0.9rem;
}

.full-order-description {
    margin-bottom: 2rem;
}

.full-order-description p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.full-order-features {
    margin-bottom: 2rem;
}

.full-order-features h4 {
    color: var(--dark-brown);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.full-order-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.full-order-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(245, 245, 220, 0.3);
    border-radius: 8px;
    color: var(--dark-brown);
    font-weight: 500;
}

.full-order-features i {
    color: var(--primary-brown);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.full-order-cta {
    text-align: center;
    margin-top: 2rem;
}

.full-order-cta .btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    margin-bottom: 1rem;
}

.cta-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.full-order-comparison {
    margin-top: 4rem;
}

.full-order-comparison .comparison-table {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.full-order-comparison table {
    width: 100%;
    border-collapse: collapse;
}

.full-order-comparison th,
.full-order-comparison td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.full-order-comparison th {
    background-color: var(--primary-brown);
    color: var(--white);
    font-weight: 600;
}

.full-order-comparison th:first-child,
.full-order-comparison td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--dark-brown);
}

.full-order-comparison strong {
    color: var(--primary-brown);
}

/* Mobile responsive for banner */
@media (max-width: 768px) {
    .pc-support-banner {
        width: 60px;
        right: 0;
    }
    
    .banner-content {
        padding: 0.8rem 0.5rem;
        gap: 0.3rem;
    }
    
    .banner-icon {
        font-size: 1.2rem;
    }
    
    .banner-text h4 {
        font-size: 0.7rem;
    }
    
    .support-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .option-icon {
        margin: 0 auto;
    }
    
    .full-order-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .full-order-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .full-order-title h3 {
        font-size: 1.5rem;
    }
    
    .full-order-price .price {
        font-size: 2rem;
    }
    
    .full-order-features ul {
        grid-template-columns: 1fr;
    }
    
    .full-order-comparison .comparison-table {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .full-order-comparison table {
        min-width: 500px;
    }
}

@media (max-width: 480px) {
    .pc-support-banner {
        width: 50px;
    }
    
    .banner-content {
        padding: 0.6rem 0.4rem;
        gap: 0.2rem;
    }
    
    .banner-text h4 {
        font-size: 0.6rem;
    }
    
    .option-content h4 {
        font-size: 1rem;
    }
    
    .option-content .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .full-order-card {
        padding: 1.5rem;
    }
    
    .full-order-title h3 {
        font-size: 1.3rem;
    }
    
    .full-order-price .price {
        font-size: 1.8rem;
    }
    
    .full-order-description p {
        font-size: 1rem;
    }
    
    .full-order-cta .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Problems Section */
.problems {
    padding: 80px 0;
}

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

.problem-card {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.95) 0%, rgba(245, 245, 220, 0.9) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.problem-card:hover {
    transform: translateY(-5px);
}

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

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

.problem-card h3 {
    color: var(--dark-brown);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--gray);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    backdrop-filter: blur(5px);
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(160, 82, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-item {
    text-align: center;
    padding: 2rem;
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.why-us-item h3 {
    color: var(--dark-brown);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.why-us-item p {
    color: var(--gray);
}

/* Plans Section */
.plans {
    padding: 80px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
}

.plan-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 3px solid var(--primary-brown);
    text-align: center;
    backdrop-filter: blur(10px);
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
    border-color: var(--secondary-brown);
}

.plan-card.featured {
    border-color: var(--primary-brown);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 220, 0.9) 100%);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.plan-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-brown), var(--secondary-brown), var(--light-brown));
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.plan-header h3 {
    color: var(--dark-brown);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.plan-price .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
}

.plan-price .period {
    color: var(--gray);
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: block;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 1rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--cream);
    border-radius: 10px;
    border-left: 4px solid var(--primary-brown);
    transition: all 0.3s ease;
}

.plan-features li:hover {
    background-color: var(--light-brown);
    transform: translateX(5px);
}

.plan-features i {
    color: var(--primary-brown);
    font-size: 1.2rem;
    min-width: 20px;
}

/* Additional Options */
.additional-options {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.options-toggle {
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.options-toggle:hover {
    background-color: rgba(139, 69, 19, 0.05);
}

.options-toggle .options-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.options-toggle .options-title i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.options-toggle.active .options-title i {
    transform: rotate(180deg);
}

.options-content {
    margin-top: 2rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.options-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 1rem;
}

.options-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

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

.option-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 69, 19, 0.2);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.option-icon i {
    font-size: 1.2rem;
    color: var(--gray);
}

.option-card h4 {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.option-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.option-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.option-price .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray);
}

.option-price .unit {
    color: var(--gray);
    font-size: 1rem;
}

.option-features {
    list-style: none;
}

.option-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.option-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-brown);
    font-weight: bold;
}

/* サブスクリプション型月額サポートプラン専用のセンタリング */
.option-card.support-plan {
    text-align: center;
}

.option-card.support-plan .option-icon {
    margin-left: auto;
    margin-right: auto;
}

.option-card.support-plan .option-price {
    justify-content: center;
}

.option-card.support-plan .option-features {
    text-align: center;
}

.option-card.support-plan .option-features li {
    padding-left: 0;
    padding-right: 0;
}

.option-card.support-plan .option-features li::before {
    position: static;
    margin-right: 0.5rem;
}

/* Works Section */
.works {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    backdrop-filter: blur(5px);
}

.works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(160, 82, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.work-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.work-card:hover {
    transform: translateY(-5px);
}

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

.work-content {
    padding: 1.5rem;
}

.work-content h3 {
    color: var(--dark-brown);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.work-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.work-tags {
    display: flex;
    gap: 0.5rem;
}

.work-tags span {
    background-color: var(--light-brown);
    color: var(--primary-brown);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 0;
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-brown);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.testimonial-company strong {
    color: var(--dark-brown);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-company span {
    color: var(--gray);
    font-size: 0.9rem;
    background-color: var(--cream);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content h4 {
    color: var(--primary-brown);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 0.95rem;
}

.testimonial-text:last-of-type {
    margin-bottom: 0;
}

.testimonial-results {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-brown);
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-2px);
}

.result-item i {
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    backdrop-filter: blur(5px);
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(160, 82, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--cream);
}

.faq-question h3 {
    color: var(--dark-brown);
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: var(--primary-brown);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--light-brown);
}

.comparison-table th {
    background-color: var(--primary-brown);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--cream);
}

.comparison-table strong {
    color: var(--primary-brown);
    font-weight: 700;
}

/* Area Section */
.area {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.area-map img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.area-cities h3 {
    color: var(--dark-brown);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.city {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.city i {
    color: var(--primary-brown);
    font-size: 1.2rem;
}

.city span {
    color: var(--dark-brown);
    font-weight: 500;
}

.area-note {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-brown);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: var(--dark-brown);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    backdrop-filter: blur(5px);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 35% 65%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 65% 35%, rgba(160, 82, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--dark-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-brown);
}

.contact-method h4 {
    color: var(--dark-brown);
    margin-bottom: 0.3rem;
}

.contact-method p {
    color: var(--gray);
    margin-bottom: 0.2rem;
}

.contact-method a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--primary-brown);
}

.contact-method small {
    color: var(--gray);
    font-size: 0.8rem;
}

.contact-form {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

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

.form-group label {
    display: block;
    color: var(--dark-brown);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-brown);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
}

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

/* Footer */
.footer {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--light-brown);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #fff;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-brown);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-brown);
    color: #fff;
}

/* Footer Company Info */
.footer-company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--secondary-brown);
    border-bottom: 1px solid var(--secondary-brown);
}

.company-details h4 {
    color: var(--light-brown);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.company-details p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.company-details a {
    color: var(--light-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-details a:hover {
    color: var(--white);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    justify-content: center;
}

.legal-link {
    color: var(--light-brown);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--light-brown);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.legal-link:hover {
    background-color: var(--light-brown);
    color: var(--dark-brown);
}

/* Footer Social Share */
.footer-social {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--secondary-brown);
    border-bottom: 1px solid var(--secondary-brown);
}

.footer-social h4 {
    color: var(--light-brown);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.x {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-btn.x:hover {
    background: linear-gradient(135deg, #333333, #000000);
    border-color: #000000;
}

.social-btn.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.social-btn.facebook:hover {
    background: linear-gradient(135deg, #365899, #4267B2);
    border-color: #4267B2;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #C13584, #E4405F);
    border-color: #E4405F;
}

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

.social-btn span {
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--light-brown);
}

.modal-body {
    padding: 2rem;
    color: var(--dark-brown);
}

.modal-body h4 {
    color: var(--primary-brown);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.modal-body a {
    color: var(--primary-brown);
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

.policy-date {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-brown);
    font-size: 0.9rem;
    color: var(--gray);
}

/* Contact Success Modal Styles */
.success-message {
    text-align: center;
    margin-bottom: 2rem;
}

.success-message i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-message h4 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.contact-info-summary {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-info-summary h5 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-summary-label {
    font-weight: 500;
    color: var(--dark-brown);
}

.contact-summary-value {
    color: var(--gray);
    text-align: right;
}

/* Form Loading State */
.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline-block;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .option-card {
        padding: 1.5rem;
    }
    
    .options-title {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        gap: 2.5rem;
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-company {
        text-align: center;
    }
    
    .testimonial-results {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .problem-card,
    .work-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .result-item {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .social-share {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .social-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .footer-company-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        align-items: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
} 