/* CSS Variables */
:root {
    --primary-green: #22c55e;
    --primary-green-dark: #16a34a;
    --primary-yellow: #fbbf24;
    --primary-yellow-dark: #f59e0b;
    --primary: #22c55e;
    --primary-light: #4ade80;
    --secondary: #fbbf24;
    --accent: #65a30d;
    --success: #22c55e;
    --warning: #fbbf24;
    --danger: #ef4444;
    --dark: #1f2937;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    --gradient-green-yellow: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
    --backdrop-blur: blur(10px) saturate(180%);
}

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

/* Accessibility & Performance Improvements */
*:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .pickup-card,
    .feature-card {
        border: 2px solid var(--gray-700);
    }
}

body {
    font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--gray-50);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

/* Header Logo with Text Layout */
.logo-link {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    text-decoration: none;
}

.header-logo-img {
    max-height: 40px;
    height: auto;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
    transform: translateY(50%);
}

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--gray-600);
    font-weight: 400;
    white-space: nowrap;
    margin: 0;
    line-height: 1.2;
}

.logo-link:hover .header-logo-img {
    transform: scale(1.05);
}

.logo-link:hover .logo-tagline {
    color: var(--primary-green);
}

/* Responsive logo sizing */
@media (max-width: 767px) {
    .logo-link {
        gap: 0.5rem;
    }
    
    .header-logo-img {
        max-height: 32px;
        max-width: 160px;
    }
    
    .logo-text {
        margin-top: 16px;
        transform: translateY(40%);
    }
    
    .logo-tagline {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    .logo-link {
        gap: 0.375rem;
    }
    
    .header-logo-img {
        max-height: 28px;
        max-width: 120px;
    }
    
    .logo-text {
        margin-top: 12px;
        transform: translateY(30%);
    }
    
    .logo-tagline {
        font-size: 0.5625rem;
    }
}

.header__logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.header__nav a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 1rem;
}

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

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

.header__nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    z-index: 0;
}

/* Hero Floating Shapes */
.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #059669;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    color: #10b981;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Enhanced Title */
.title-accent {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Description Icon */
.description-icon {
    color: #6b7280;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Enhanced Buttons */
.hero-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 2px solid #e5e7eb;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.2);
}

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

.hero__text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero__stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: var(--backdrop-blur);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

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

.hero__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    max-width: 400px;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.hero__card:hover {
    transform: rotate(-2deg) scale(1.05);
}

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: var(--primary-green-dark);
}

.btn--secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn--secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

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

/* Section Base */
.section {
    padding: 6rem 0;
    position: relative;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Grid */
.services {
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.service-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.service-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    gap: 0.125rem;
}

.rating-stars .fas {
    color: var(--warning);
}

.rating-stars .far {
    color: var(--gray-300);
}

.rating-score {
    font-weight: 600;
    color: var(--gray-700);
}

.service-card__features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.feature-item i {
    width: 16px;
    color: var(--success);
}

.service-card__highlight {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.highlight-value {
    font-size: 1.5rem;
    font-weight: 800;
}

.service-card__badge {
    padding: 0.75rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-card__badge--success {
    background: var(--gradient-success);
    color: var(--white);
}

.service-card__badge--warning {
    background: var(--gradient-warning);
    color: var(--white);
}

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

.service-card__badge--danger {
    background: var(--gradient-danger);
    color: var(--white);
}

/* Simulator Section */
.simulator-section {
    background: linear-gradient(135deg, #1e293b 0%, #374151 50%, #1f2937 100%);
    color: var(--white);
    padding: 5rem 0;
}

.simulator-header {
    text-align: center;
    margin-bottom: 4rem;
}

.simulator-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.simulator-description {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.simulator-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    flex: 1;
    padding: 1rem 3rem 1rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-suffix {
    position: absolute;
    right: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.calculate-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.calculate-btn:hover {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-yellow-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.simulator-result {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.result-amount {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profit-highlight {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.profit-amount {
    font-weight: 700;
    color: #fbbf24;
}

.result-breakdown {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.breakdown-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: center;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.total {
    font-weight: 700;
    font-size: 1.125rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
}

.breakdown-label {
    opacity: 0.9;
}

.breakdown-value {
    font-weight: 600;
}

.breakdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

/* Safety Section */
.safety {
    background: var(--gray-50);
}

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

.safety-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-4px);
}

.safety-item__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.safety-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.safety-item__description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1rem;
}

.footer__content {
    text-align: center;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__description {
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    margin-top: 2rem;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

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

    .header__nav {
        display: none;
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0 1.5rem;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .simulator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero__text h1 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .simulator-form {
        padding: 1.5rem;
    }
    
    .form-grid {
        gap: 1rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }

    .result-amount {
        font-size: 2rem;
    }
    
    /* Guide Section - Mobile */
    .guide-section {
        padding: 2.5rem 0;
    }
    
    .guide-intro {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .guide-intro p {
        font-size: 1rem;
    }
    
    .guide-section-title {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }
    
    .steps-container,
    .warning-list {
        padding: 0 0.5rem;
    }
    
    .step-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.125rem;
    }
    
    .terms-grid {
        padding: 0 0.5rem;
    }
    
    .term-card {
        padding: 1.25rem;
    }
    
    .term-title {
        font-size: 1.125rem;
    }
    
    .warning-item {
        padding: 1.25rem;
    }
    
    .warning-content h4 {
        font-size: 1rem;
        padding-right: 2rem;
    }
    
    .warning-item::before {
        font-size: 1rem;
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* FX総合研究所スタイルのコンポーネント */

/* Header Styles - FX総合研究所風 */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Main header logo styles - inherits from .logo-link class */
.logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo .header-logo-img {
    max-height: 50px;
    height: auto;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    position: relative;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

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

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

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

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
}

/* Hero Styles - FX総合研究所風 */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.highlight {
    background: var(--gradient-green-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    display: block;
    margin-top: 0.25rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 580px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 2.5rem 0;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: countUp 0.8s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    line-height: 1.1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    line-height: 1.3;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-green-dark);
}

/* Quick Access Cards */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.quick-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--gray-900);
}

.quick-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.quick-icon.ranking {
    background: var(--gradient-green-yellow);
}

.quick-icon.comparison {
    background: var(--gradient-primary);
}

.quick-icon.guide {
    background: var(--gradient-secondary);
}

.quick-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.quick-text p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.quick-arrow {
    margin-left: auto;
    font-size: 1.25rem;
    color: var(--primary-green);
}

/* Pickup Cards - FX総合研究所風 */
.pickup-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.pickup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Large desktop optimization */
@media (min-width: 1200px) {
    .pickup-grid {
        gap: 2.5rem;
        max-width: 1400px;
    }
    
    .pickup-card {
        min-height: 280px;
    }
}

.pickup-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
    min-height: 260px;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.pickup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-green-yellow);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.pickup-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.15), 0 10px 30px rgba(251, 191, 36, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.pickup-card:hover::before {
    opacity: 1;
    height: 6px;
}

.pickup-header {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(251, 191, 36, 0.02) 100%);
    padding: 1rem 1.25rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.company-logo {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    padding: 0.5rem 1.25rem;
    background: var(--gradient-green-yellow);
    border-radius: 20px;
    border: none;
    box-shadow: 0 3px 12px rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.company-logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.pickup-badge {
    padding: 0.4rem 0.875rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pickup-badge.best {
    background: var(--gradient-green-yellow);
    color: var(--gray-900);
}

.pickup-badge.feature {
    background: var(--gradient-warning);
    color: var(--gray-900);
}

.pickup-badge.professional {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: var(--white);
}

.pickup-badge.easy {
    background: var(--gradient-primary);
    color: var(--white);
}

.pickup-badge.swap {
    background: var(--gradient-secondary);
    color: var(--gray-900);
}

.pickup-content {
    padding: 0.75rem 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pickup-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pickup-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
}

.feature-tag {
    background: var(--gradient-warning);
    color: var(--gray-900);
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.25);
}

.feature-tag:first-child {
    background: var(--gradient-green-yellow);
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(34, 197, 94, 0.3);
}

.pickup-description {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0.875rem;
    font-size: 0.8125rem;
    flex-grow: 1;
    font-weight: 400;
}

.pickup-description strong {
    color: var(--primary-green);
    font-weight: 700;
}

.pickup-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, rgba(251, 191, 36, 0.01) 100%);
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.05);
}

.spec-item {
    text-align: center;
    padding: 0.25rem;
}

.spec-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -0.025em;
}

.spec-item:first-child .spec-value {
    font-size: 1.25rem;
    background: var(--gradient-green-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.pickup-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.25rem 1rem;
    margin-top: auto;
}

.pickup-actions .btn {
    flex: 1;
    justify-content: center;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8125rem;
}

.pickup-actions .btn-outline {
    background: rgba(34, 197, 94, 0.05);
    color: var(--primary-green);
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.pickup-actions .btn-outline:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.pickup-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

/* Comparison CTA */
.comparison-cta-simple {
    text-align: center;
    margin-top: 3rem;
}

.cta-inner {
    background: var(--gradient-green-yellow);
    color: var(--gray-900);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-arrow {
    margin-left: 0.5rem;
}

/* Guide Section */
.guide-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.guide-intro {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.guide-intro p {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.guide-section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.2;
}

.guide-steps {
    margin-bottom: 6rem;
}

.steps-container {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.step-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.guide-terms {
    margin-bottom: 6rem;
}

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

.term-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.term-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
}

.term-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.term-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.term-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.term-example {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}

.guide-warnings {
    margin-bottom: 2rem;
}

.warning-list {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.warning-item {
    background: linear-gradient(135deg, #fef9e7 0%, #fef3cd 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.warning-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

.warning-item::before {
    content: '⚠️';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
}

.warning-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.75rem;
    padding-right: 3rem;
}

.warning-content p {
    color: #92400e;
    line-height: 1.7;
    font-size: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.star-rating {
    margin-top: 1rem;
}

.star {
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.star.filled {
    color: var(--warning);
}

.star:not(.filled) {
    color: var(--gray-300);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-green);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

/* Footer Styles - FX総合研究所風 */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-link {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.contact-link {
    color: var(--primary-green);
    text-decoration: none;
}

.contact-link:hover {
    color: var(--primary-light);
}

.disclaimer {
    background: var(--gray-800);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.disclaimer-title {
    color: var(--warning);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.disclaimer-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    font-size: 0.875rem;
}

/* Button Styles Update */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--gray-900);
    border: 2px solid var(--primary-yellow);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--gradient-green-yellow);
    color: var(--gray-900);
    border-color: var(--primary-green);
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Responsive Design - Mobile First Approach */

/* Extra Small devices (320px and up) */
@media (min-width: 320px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Small devices (480px and up) */
@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
        max-width: 1200px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .terms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
        padding: 8rem 0 4rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .terms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .terms-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Mobile-specific styles (max-width based) */
@media (max-width: 767px) {
    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1rem 2rem;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }


    .pickup-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .pickup-actions .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quick-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
        margin-bottom: 0.5rem;
    }

    .terms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .header__content {
        padding: 0.75rem 0;
    }
    
    .header__logo {
        font-size: 1.25rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .warning-list {
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}



/* Mobile layout */
@media (max-width: 639px) {
    .pickup-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pickup-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .pickup-content {
        padding: 1.5rem;
    }
    
    .pickup-actions {
        padding: 0 1.5rem 1.5rem;
        gap: 0.75rem;
    }
    
    .pickup-specs {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .company-logo {
        font-size: 1.125rem;
        padding: 0.625rem 1.25rem;
    }
    
    .pickup-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Very small devices (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .pickup-card {
        padding: 1.25rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guide-section {
        padding: 3rem 0;
    }
    
    .guide-intro {
        margin-bottom: 3rem;
    }
    
    .guide-intro p {
        font-size: 1.125rem;
    }
    
    .guide-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .guide-steps,
    .guide-terms,
    .guide-warnings {
        margin-bottom: 3rem;
    }
    
    .step-item {
        padding: 1.5rem;
        gap: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
        align-self: center;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .term-card {
        padding: 1.5rem;
    }
    
    .warning-item {
        padding: 1.5rem;
    }
    
    .warning-item::before {
        top: 1rem;
        right: 1rem;
        font-size: 1.25rem;
    }
    
    .warning-content h4 {
        font-size: 1.125rem;
        padding-right: 2.5rem;
    }
    
    .disclaimer {
        padding: 1.5rem;
        margin: 2rem 0;
    }
}

/* ========================================
   COMPARISON PAGE STYLES - MOBILE FIRST
   ======================================== */

/* Mobile/Tablet Card Layout */
.desktop-only {
    display: none;
}

.mobile-tablet-only {
    display: block;
}

.comparison-cards {
    display: grid;
    gap: 1.5rem;
    padding: 0;
}

.comparison-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
    padding: 1.5rem 1.5rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.service-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-logo-img {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.service-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0.02em;
}

.service-badge.best {
    background: #059669;
    color: white;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.service-badge.feature {
    background: #1d4ed8;
    color: white;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.3);
}

.service-badge.easy {
    background: #d97706;
    color: white;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.card-content {
    padding: 1.5rem;
}

.service-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-details {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f3f4f6;
    min-height: 48px;
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #6b7280;
    flex: 1;
}

.detail-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111827;
    text-align: right;
    flex: 0 0 auto;
}

.detail-value.highlight {
    color: #059669;
    font-weight: 700;
    font-size: 1.125rem;
}

.detail-value.status-good {
    color: #065f46;
    background: #d1fae5;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.feature-tag {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    background: #f8fafc;
    color: #475569;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: #e2e8f0;
    color: #334155;
}

.card-footer {
    padding: 1rem 1.5rem 1.5rem;
    background: #fafbfc;
    border-top: 1px solid #f1f5f9;
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    min-height: 50px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #059669;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #059669;
    color: #059669;
}

.show-more-btn-wrapper {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.show-more-btn {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    min-height: 50px;
}

/* Desktop Table View - Hidden on Mobile/Tablet */
@media (min-width: 1024px) {
    .desktop-only {
        display: block;
    }
    
    .mobile-tablet-only {
        display: none;
    }
}

/* Tablet Specific Adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .comparison-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .comparison-card {
        min-height: 420px;
    }
    
    .service-name {
        font-size: 1.25rem;
    }
}

/* Mobile Specific Adjustments */
@media (max-width: 767px) {
    .comparison-cards {
        gap: 1.25rem;
    }
    
    .card-header {
        padding: 1.25rem 1.25rem 1rem;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-footer {
        padding: 1rem 1.25rem 1.25rem;
    }
    
    .service-name {
        font-size: 1.1875rem;
        margin-bottom: 1.25rem;
    }
    
    .detail-item {
        padding: 0.75rem 0;
        min-height: 44px;
    }
    
    .detail-label {
        font-size: 0.875rem;
    }
    
    .detail-value {
        font-size: 1rem;
    }
    
    .service-logo-img {
        height: 32px;
        max-width: 120px;
    }
    
    .service-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .btn-full {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
}

/* Comparison Hero - Modern Design */
.comparison-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.comparison-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    max-width: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    backdrop-filter: blur(12px);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #10b981;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-accent {
    color: #10b981;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

/* CTA Buttons - Modern Style */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn-cta.primary {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-cta.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-cta.primary:hover::before {
    left: 100%;
}

.btn-cta.primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-cta.secondary {
    background: transparent;
    color: #cbd5e1;
    border: 2px solid rgba(203, 213, 225, 0.3);
    backdrop-filter: blur(12px);
}

.btn-cta.secondary:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-cta.primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Stats - Grid Layout */
.hero-stats {
    position: relative;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.stat-item.highlight {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-desc {
    font-size: 0.875rem;
    opacity: 0.8;
    color: #cbd5e1;
    font-weight: 500;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #cbd5e1;
    opacity: 0.9;
}

.trust-item i {
    color: #10b981;
    font-size: 1rem;
    width: 16px;
}

/* Filters Section */
.filters-section {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.filters-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.filters-reset {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    color: var(--gray-700);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.filters-reset:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

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

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Comparison Table */
.comparison-table-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.comparison-table tr:hover {
    background: var(--gray-50);
}

/* Service Cell */
.service-cell {
    min-width: 200px;
    position: sticky;
    left: 0;
    background: var(--white);
    z-index: 5;
    border-right: 2px solid var(--gray-200);
}

.service-row:hover .service-cell {
    background: var(--gray-50);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-logo {
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    color: var(--white);
    text-align: center;
    min-width: 120px;
}

/* Service Logo Colors */
.service-logo.creal { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.service-logo.cozuchi { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); }
.service-logo.fantas { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.service-logo.yamawake { background: linear-gradient(135deg, #059669 0%, #047857 100%); }
.service-logo.rimple { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); }
.service-logo.renosy { background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%); }
.service-logo.assecli { background: linear-gradient(135deg, #9333ea 0%, #7c2d12 100%); }
.service-logo.tecrowd { background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); }
.service-logo.camel { background: linear-gradient(135deg, #be185d 0%, #9d174d 100%); }
.service-logo.triad { background: linear-gradient(135deg, #1f2937 0%, #111827 100%); }
.service-logo.warashibe { background: linear-gradient(135deg, #65a30d 0%, #4d7c0f 100%); }
.service-logo.tomotaku { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); }
.service-logo.sols { background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%); }
.service-logo.crowdbank { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.service-logo.victory { background: linear-gradient(135deg, #7c2d12 0%, #451a03 100%); }
.service-logo.lives { background: linear-gradient(135deg, #059669 0%, #047857 100%); }
.service-logo.mirafan { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }
.service-logo.ownersbook { background: linear-gradient(135deg, #374151 0%, #1f2937 100%); }
.service-logo.joinalpha { background: linear-gradient(135deg, #be123c 0%, #9f1239 100%); }

.service-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.service-badge.best {
    background: #f59e0b;
    color: var(--white);
}

.service-badge.feature {
    background: var(--primary-green);
    color: var(--white);
}

.service-badge.easy {
    background: #3b82f6;
    color: var(--white);
}

.service-badge.professional {
    background: #6b7280;
    color: var(--white);
}

.service-badge.swap {
    background: #8b5cf6;
    color: var(--white);
}

/* Table Cells */
.yield-cell {
    font-weight: 600;
    color: var(--primary-green);
    min-width: 100px;
}

.junior-cell {
    min-width: 80px;
}

.min-amount-cell {
    min-width: 80px;
}

.period-cell {
    min-width: 100px;
}

.features-cell {
    min-width: 150px;
}

.feature-tag {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 500;
    margin: 0.125rem;
    white-space: nowrap;
}

.status-cell {
    min-width: 80px;
}

.status-good {
    color: var(--primary-green);
    font-weight: 600;
}

.status-warning {
    color: var(--warning);
    font-weight: 600;
}

.status-danger {
    color: var(--danger);
    font-weight: 600;
}

.action-cell {
    min-width: 100px;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: 6px;
}

/* Table Summary */
.table-summary {
    text-align: center;
    margin-top: 1rem;
}

.summary-text {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .comparison-hero {
        padding: 6rem 0 3rem;
    }
    
    .filters-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .table-wrapper {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .service-cell {
        min-width: 150px;
    }
    
    .service-logo {
        font-size: 0.75rem;
        min-width: 100px;
        padding: 0.25rem 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .comparison-hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .comparison-hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .title-accent::after {
        bottom: -4px;
        height: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.125rem;
    }
    
    .stat-desc {
        font-size: 0.8125rem;
    }
    
    .trust-indicators {
        gap: 0.5rem;
    }
    
    .trust-item {
        font-size: 0.875rem;
        justify-content: center;
    }
    
    .comparison-table {
        font-size: 0.875rem; /* 14px - WCAG準拠の最小サイズ */
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.375rem;
    }
    
    .service-cell {
        min-width: 120px;
    }
    
    .service-logo {
        font-size: 0.6875rem;
        min-width: 80px;
    }
    
    .feature-tag {
        font-size: 0.625rem;
        padding: 0.125rem 0.375rem;
    }
}