    .enterprise-main {
        margin-bottom: 48px;
    }
    
    .enterprise-text {
        margin-bottom: 40px;
    }
    
    .enterprise-image {
        text-align: center;
        margin: 48px 0 0;
        padding: 3%;
    }
    
    .enterprise-image img {
        max-width: 100%;
        border-radius: 12px;
    }    .enterprise {
        padding: 80px 0;
    }
    
    .enterprise-text h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .enterprise-description {
        font-size: 1rem;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    
    .enterprise-feature {
        padding: 32px 24px;
    }
    
    .feature-icon-enterprise {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .feature-icon-enterprise svg {
        width: 28px;
        height: 28px;
    }
    
    .enterprise-feature h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .enterprise-feature p {
        font-size: 14px;
    }
    
    .enterprise-cta {
        padding: 32px 24px;
        margin-top: 48px;
    }
    
    .enterprise-cta-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .enterprise-cta-content p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .enterprise-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
    }@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap');

/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f0f23;
    --secondary: #1a1a2e;
    --accent: #16213e;
    --highlight: #0019ff;
    --button-primary: #0019ff;
    --text-primary: #0f0f23;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-gradient-1: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    --bg-gradient-2: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%);
    --bg-gradient-3: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    --border-color: #e2e8f0;
    --shadow-light: rgba(15, 15, 35, 0.08);
    --shadow-medium: rgba(15, 15, 35, 0.12);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'M PLUS 1p', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-gradient-1);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    font-variant-ligatures: common-ligatures;
    opacity: 0;
    animation: pageLoad 0.6s ease-out 0.1s forwards;
}

@keyframes pageLoad {
    to { opacity: 1; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Mobile break line control */
.mobile-br {
    display: none;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
    animation: navSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

nav.scrolled {
    background: #000000;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

@keyframes navSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.logo img {
    height: 31px;
    width: auto;
    transition: opacity 0.2s ease;
    filter: brightness(0) invert(1);
}

.logo img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-menu a:hover {
    color: white;
}

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

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

/* Navigation Buttons */
.nav-cta {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: inherit;
    border: 2px solid var(--button-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-cta-primary {
    background: var(--button-primary);
    color: white;
}

.nav-cta-primary:hover {
    background: #0015cc;
    border-color: #0015cc;
    transform: translateY(-1px);
}

.nav-cta-secondary {
    background: white;
    color: var(--button-primary);
    position: relative;
    padding-right: 32px;
}

.nav-cta-secondary::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230019ff'%3E%3Cpath d='M12 15.577l-3.539-3.538.708-.719L11.5 13.65V5h1v8.65l2.331-2.33.708.719L12 15.577z'/%3E%3Cpath d='M6 18h12v1H6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

.nav-cta-secondary:hover {
    background: var(--button-primary);
    color: white;
    transform: translateY(-1px);
}

.nav-cta-secondary:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 15.577l-3.539-3.538.708-.719L11.5 13.65V5h1v8.65l2.331-2.33.708.719L12 15.577z'/%3E%3Cpath d='M6 18h12v1H6z'/%3E%3C/svg%3E");
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 4px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 20px 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile CTA Buttons */
.mobile-cta {
    margin: 10px 24px;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    border: 2px solid var(--button-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-cta-primary {
    background: var(--button-primary);
    color: white;
}

.mobile-cta-primary:hover {
    background: #0015cc;
    border-color: #0015cc;
}

.mobile-cta-secondary {
    background: white;
    color: var(--button-primary);
    position: relative;
    padding-right: 44px;
}

.mobile-cta-secondary::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230019ff'%3E%3Cpath d='M12 15.577l-3.539-3.538.708-.719L11.5 13.65V5h1v8.65l2.331-2.33.708.719L12 15.577z'/%3E%3Cpath d='M6 18h12v1H6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

.mobile-cta-secondary:hover {
    background: var(--button-primary);
    color: white;
}

.mobile-cta-secondary:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 15.577l-3.539-3.538.708-.719L11.5 13.65V5h1v8.65l2.331-2.33.708.719L12 15.577z'/%3E%3Cpath d='M6 18h12v1H6z'/%3E%3C/svg%3E");
    opacity: 1;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s ease-out 2.5s forwards;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.scroll-indicator:hover {
    color: var(--button-primary);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
    color: inherit;
}

@keyframes scrollIndicatorFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateY(-8px);
        opacity: 0.7;
    }
    60% {
        transform: translateY(-4px);
        opacity: 0.9;
    }
}

/* Hide scroll indicator when scrolled */
.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--button-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(0, 25, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #0015cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 25, 255, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-gradient-1);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 70%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    z-index: 2;
    position: relative;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(50px);
    animation: imageSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes imageSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.hero h1 .line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: lineReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.main-message {
    margin-top: 10px;
}

.hero h1 .line.main-1,
.hero h1 .line.main-2,
.hero h1 .line.main-3,
.hero h1 .line.main-4 {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hero h1 .line.main-1 {
    animation-delay: 0.2s;
}

.hero h1 .line.main-2 {
    animation-delay: 0.4s;
}

.hero h1 .line.main-3 {
    animation-delay: 0.6s;
}

.hero h1 .line.main-4 {
    animation-delay: 0.8s;
}

@keyframes lineReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 .highlight {
    color: var(--highlight);
    position: relative;
    animation: highlightGlow 2s ease-in-out 1.8s forwards;
}

@keyframes highlightGlow {
    0% { color: var(--text-primary); }
    100% { color: var(--highlight); }
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.0s forwards;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Hero Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* CTA Section Buttons - Center aligned */
.cta .cta-buttons {
    justify-content: center;
}

.cta-buttons .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cta-buttons .btn:nth-child(1) {
    animation-delay: 1.2s;
}

.cta-buttons .btn:nth-child(2) {
    animation-delay: 1.4s;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: inherit;
    border: 2px solid var(--button-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.btn-primary:hover {
    background: #0015cc;
    border-color: #0015cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 25, 255, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--button-primary);
    font-weight: 700;
    position: relative;
    padding-right: 36px;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230019ff'%3E%3Cpath d='M12 15.577l-3.539-3.538.708-.719L11.5 13.65V5h1v8.65l2.331-2.33.708.719L12 15.577z'/%3E%3Cpath d='M6 18h12v1H6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
}

.btn-secondary:hover {
    background: var(--button-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 25, 255, 0.25);
}

.btn-secondary:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 15.577l-3.539-3.538.708-.719L11.5 13.65V5h1v8.65l2.331-2.33.708.719L12 15.577z'/%3E%3Cpath d='M6 18h12v1H6z'/%3E%3C/svg%3E");
    opacity: 1;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(239, 68, 68, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 64px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 32px 24px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow-light);
    border-color: var(--button-primary);
}

.feature-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 120px 0;
    background: var(--bg-gradient-2);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 70%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* New Features Grid - 4列並び×2行 */
.new-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    margin-bottom: 80px;
}

/* Service Icon Styles */
.service-icon {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 25, 255, 0.05);
    transition: all 0.3s ease;
}

.service-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:not(.existing-service-item) {
    background: var(--bg-primary);
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    text-align: center;
}

.service-item:not(.existing-service-item):hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px var(--shadow-light);
}

.service-item:not(.existing-service-item):hover .service-icon {
    background: rgba(0, 25, 255, 0.1);
    transform: translateY(-2px);
}

.service-item:not(.existing-service-item):hover .service-icon img {
    transform: scale(1.05);
}

.service-item:not(.existing-service-item) h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.service-item:not(.existing-service-item) p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Premium Pricing Showcase */
.premium-pricing-showcase {
    background: var(--button-primary);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 25, 255, 0.3);
}

.premium-pricing-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.pricing-hero {
    padding: 60px 40px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.pricing-subheadline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
    font-weight: 400;
}

/* Compact Comparison within Revenue Card */
.compact-comparison {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.comparison-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.comparison-row:last-child {
    margin-bottom: 0;
}

.service-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 80px;
    flex-shrink: 0;
}

.comparison-bar {
    flex: 1;
    height: 16px;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    transition: width 1.5s ease-out;
    width: 0;
}

.peeeps-bar {
    background: var(--button-primary);
}

.other-bar {
    background: var(--text-light);
}

.bar-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: white;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.pricing-card {
    padding: 48px 32px;
    border-right: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.pricing-card:last-child {
    border-right: none;
}

.pricing-card:hover {
    background: #f8fafc;
    transform: translateY(-4px);
}

.featured {
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    flex-direction: column;
    gap: 16px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #0019ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-icon.yen-icon {
    font-size: 28px;
    font-weight: bold;
    font-family: 'M PLUS 1p', sans-serif;
}

.featured .card-icon {
    background: #0019ff;
}

.support-scope .card-icon {
    background: #0019ff;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
}

.cost-display, .revenue-display {
    text-align: center;
    margin-bottom: 32px;
}

.cost-amount, .revenue-percentage {
    font-size: 3rem;
    font-weight: 900;
    color: var(--button-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.cost-label, .revenue-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.support-level {
    text-align: center;
    margin-bottom: 32px;
}

.support-badge {
    display: inline-block;
    background: #0019ff;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

.revenue-details {
    text-align: center;
    margin-bottom: 32px;
}

.revenue-details p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.detail-note {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
    font-style: italic;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.feature-list li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--button-primary);
    font-weight: bold;
    font-size: 16px;
}

/* Pricing Patterns */
.pricing-patterns {
    margin-top: 80px;
    text-align: center;
}

.patterns-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.patterns-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.pattern-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.pattern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--button-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pattern-card:nth-child(2)::before {
    background: var(--button-primary);
}

.pattern-card:nth-child(3)::before {
    background: var(--button-primary);
}

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

.pattern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--button-primary);
}

.pattern-icon {
    width: 80px;
    height: 80px;
    background: var(--button-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.pattern-card:nth-child(2) .pattern-icon {
    background: var(--button-primary);
}

.pattern-card:nth-child(3) .pattern-icon {
    background: var(--button-primary);
}

.pattern-icon svg {
    width: 36px;
    height: 36px;
}

.pattern-card h4 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 16px;
}

.pattern-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--button-primary);
    border-radius: 2px;
}

.pattern-card:nth-child(2) h4::after {
    background: var(--button-primary);
}

.pattern-card:nth-child(3) h4::after {
    background: var(--button-primary);
}

.pattern-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.pattern-card li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 32px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.pattern-card:hover li {
    color: var(--text-primary);
}

.pattern-card li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 12px;
    font-weight: bold;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--button-primary);
}

.pattern-card:nth-child(2) li::before {
    background: var(--button-primary);
}

.pattern-card:nth-child(3) li::before {
    background: var(--button-primary);
}

/* ===== ENTERPRISE SECTION ===== */
.enterprise {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 25, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(100, 116, 139, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.enterprise-content {
    max-width: 1200px;
    margin: 0 auto;
}

.enterprise-image {
    text-align: center;
    margin: 48px 0 0;
    padding: 0 80px;
}

.enterprise-image img {
    width: 100%;
    max-width: 800px;
    padding: 5% 13%;
    background: #fff;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.enterprise-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.enterprise-main {
    text-align: center;
    margin-bottom: 30px;
}

.enterprise-text {
    max-width: 800px;
    margin: 0 auto 16px;
}

.enterprise-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.enterprise-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.enterprise-feature {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.enterprise-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--button-primary);
}

.feature-icon-enterprise {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--button-primary) 0%, #0015cc 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.enterprise-feature:hover .feature-icon-enterprise {
    transform: scale(1.05);
}

.feature-icon-enterprise svg {
    width: 36px;
    height: 36px;
}

.enterprise-feature h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.enterprise-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.enterprise-cta {
    background: white;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.enterprise-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--button-primary) 0%, #0015cc 100%);
}

.enterprise-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.enterprise-cta-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.enterprise-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background: var(--button-primary);
    color: white;
    border: 2px solid var(--button-primary);
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.enterprise-btn:hover {
    background: #0015cc;
    border-color: #0015cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 25, 255, 0.25);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 120px 0;
    background: var(--bg-gradient-3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 60% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 48px;
    color: var(--text-secondary);
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 48px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cta-option {
    background: var(--bg-primary);
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    color: #000000;
    transition: all 0.2s ease;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.cta-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--shadow-light);
    border-color: var(--button-primary);
}

/* ===== NEWS SECTION ===== */
.news {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.news-item {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--button-primary);
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-date {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.news-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item:hover .news-title {
    color: var(--button-primary);
}

/* ===== FOOTER ===== */
footer {
    background: #000000;
    color: white;
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0, 25, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 25, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: white;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 31px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 14px;
}

.office-info {
    margin-bottom: 24px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.office-info strong {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.company-info {
    display: block;
}

.company-detail {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.company-detail strong {
    color: white;
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 14px;
}

.copyright {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 1200px) {
    .hero-image img {
        max-width: 900px;
    }
    
    .feature-icon {
        height: 220px;
        margin-bottom: 36px;
    }
    
    .service-icon {
        height: 140px;
        margin-bottom: 24px;
    }
    
    .new-features-grid {
        gap: 32px;
        margin-bottom: 100px;
    }
    
    .service-item:not(.existing-service-item) {
        padding: 36px 28px;
    }
    
    .cta-option {
        white-space: normal;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 50px;
    }
    
    .hero-image img {
        max-width: 700px;
    }
    
    .hero h1 .line.main-1,
    .hero h1 .line.main-2,
    .hero h1 .line.main-3,
    .hero h1 .line.main-4 {
        font-size: clamp(1.4rem, 3.3vw, 1.9rem);
    }
    
    .cta-option {
        white-space: normal;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu,
    .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -8px);
    }
    
    .nav-left {
        gap: 24px;
        flex: 1;
        justify-content: space-between;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-image img {
        max-width: 450px;
        transform: translateY(30px);
        animation: imageSlideInMobile 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
    }
    
    .cta-buttons {
        justify-content: center;
        order: 3;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
    }
    
    .hero .cta-buttons {
        justify-content: center;
    }
    
    .hero h1 .line.main-1,
    .hero h1 .line.main-2,
    .hero h1 .line.main-3,
    .hero h1 .line.main-4 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .features,
    .services,
    .pricing,
    .cta,
    .news {
        padding: 80px 0;
    }
    
    .features-grid,
    .new-features-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .new-features-grid {
        margin-bottom: 50px;
    }
    
    .feature-icon {
        height: 180px;
        margin-bottom: 28px;
    }
    
    .service-icon {
        height: 230px;
        margin-bottom: 12px;
        width: 100%;
    }
    
    .service-icon img {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 48px;
    }
    
    /* Premium Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pricing-card {
        padding: 32px 20px;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .pricing-card:last-child {
        border-bottom: none;
    }
    
    .comparison-section {
        padding: 32px 20px;
        margin-top: 24px;
    }
    
    .comparison-title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }
    
    .revenue-comparison {
        gap: 16px;
    }
    
    .comparison-item {
        padding: 20px;
    }
    
    .comparison-bar {
        height: 30px;
    }
    
    .enterprise-image {
        text-align: center;
        margin: 48px 0 0;
        padding: 3%;
    }
    
    .compact-comparison {
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .comparison-row {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .service-name {
        font-size: 0.8rem;
        min-width: 70px;
    }
    
    .comparison-bar {
        height: 14px;
    }
    
    .bar-text {
        font-size: 0.7rem;
        padding-right: 6px;
    }
    
    .pricing-hero {
        padding: 40px 20px 30px;
    }
    
    .pricing-headline {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .pricing-subheadline {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .patterns-title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }
    
    .patterns-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .patterns-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    
    .pattern-card {
        padding: 28px 20px;
        text-align: center;
    }
    
    .pattern-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .pattern-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .pattern-card h4 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }
    
    .pattern-card ul {
        text-align: left;
        display: inline-block;
        width: auto;
        margin: 0 auto;
    }
    
    .pattern-card li {
        font-size: 14px;
        padding: 8px 0;
        padding-left: 24px;
    }
    
    .pattern-card li::before {
        top: 8px;
        left: -5px;
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 32px 0;
    }
    
    .cta-option {
        padding: 24px 20px;
        font-size: 14px;
        white-space: normal;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .news-image {
        height: 140px;
    }
    
    .news-content {
        padding: 16px;
    }
    
    .news-title {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .news-date {
        font-size: 0.8rem;
    }
    
    .mobile-cta-secondary {
        background: white !important;
        color: var(--button-primary) !important;
        border: 2px solid var(--button-primary);
    }
    
    .mobile-cta-secondary:hover {
        background: var(--button-primary) !important;
        color: white !important;
    }
    
    .feature-list li::before {
        top: 8px;
    }
    
    .cta h2 {
        font-size: 1.2rem;
        white-space: nowrap;
    }
    
    .mobile-br {
        display: inline;
    }
}

@keyframes imageSlideInMobile {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 12px 0;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-image img {
        max-width: 330px;
        border-radius: 15px;
    }
    
    .hero h1 .line.main-1,
    .hero h1 .line.main-2,
    .hero h1 .line.main-3,
    .hero h1 .line.main-4 {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .feature-card,
    .service-item:not(.existing-service-item) {
        padding: 28px 20px;
    }
    
    .feature-icon {
        height: 160px;
        margin-bottom: 24px;
    }
    
    .pricing-card {
        padding: 24px 16px;
    }
    
    .pricing-hero {
        padding: 32px 16px 24px;
    }
    
    .pricing-headline {
        font-size: 1.5rem;
    }
    
    .pricing-subheadline {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .patterns-title {
        font-size: 1.5rem;
    }
    
    .pattern-card {
        padding: 24px 16px;
    }
    
    .pattern-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .pattern-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .cta-option {
        padding: 20px 16px;
        font-size: 13px;
    }
    
    .pattern-card h4 {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    
    .pattern-card li {
        font-size: 13px;
        padding: 5px 0;
        padding-left: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: var(--highlight);
    color: white;
}

::-moz-selection {
    background: var(--highlight);
    color: white;
}