/* CSS Variables for Theme */
:root {
    --primary-color: #0F3869; /* Deep Blue */
    --secondary-color: #10B981; /* Emerald Green */
    --accent-color: #F59E0B; /* Amber */
    --dark-bg: #1E293B;
    --light-bg: #F8FAFC;
    --text-main: #334155;
    --text-light: #64748B;
    --white: #FFFFFF;
    --gradient-main: linear-gradient(135deg, #0F3869 0%, #10B981 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.rw-text-center { text-align: center; }
.rw-mb-4 { margin-bottom: 2rem; }
.rw-w-100 { width: 100%; }

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

/* Subtle dot-grid background for plain white sections */
.section:not(.bg-light):not(.bg-dark):not(.bg-gradient):not(.bg-primary) {
    background-color: #ffffff;
    background-image:
        radial-gradient(circle, rgba(15, 56, 105, 0.15) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

/* Soft floating orb accents for bg-light sections */
.bg-light {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    top: -250px;
    right: -200px;
    pointer-events: none;
    z-index: 0;
}

.bg-light::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 56, 105, 0.10) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    pointer-events: none;
    z-index: 0;
}
.bg-dark { background-color: var(--dark-bg); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-primary { background-color: var(--primary-color); color: var(--white); }
.bg-gradient { background: var(--gradient-main); color: var(--white); }

/* Buttons */
.rw-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
}

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

.rw-btn-primary:hover {
    background-color: #0a264a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

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

.rw-btn-gradient:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

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

.rw-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.rw-btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

.rw-btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Works Section */
.works-categories {
    margin-bottom: 40px;
}

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

.work-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}

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

.work-image {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    overflow: hidden;
}

.work-image span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.work-info {
    padding: 20px;
    text-align: center;
}

.work-info h3 {
    font-size: 1.1rem;
    margin: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 35px; /* Adjust based on your logo proportions */
    width: auto;
    display: block;
}

.inline-logo {
    height: 3rem;
    width: auto;
    vertical-align: middle;
    margin-top: -8px;
    margin-right: 8px;
}

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

.nav a:not(.rw-btn) {
    font-weight: 600;
    color: var(--text-main);
}

.nav a:not(.rw-btn):hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(15, 56, 105, 0.05) 50%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-subtitle {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Glassmorphism Mockup */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 30px;
}

.mockup-card {
    padding: 0;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: rgba(241, 245, 249, 0.8);
    padding: 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-body {
    padding: 40px;
    text-align: center;
}

.mockup-body h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.mockup-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    margin-top: 40px;
}

.bar {
    width: 40px;
    background: var(--gradient-main);
    border-radius: 8px 8px 0 0;
    animation: growUp 1.5s ease-out forwards;
    transform-origin: bottom;
}

/* Problems Grid */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.problems-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.problem-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    width: 100%;
}

@media (min-width: 768px) {
    .problem-card {
        width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .problem-card {
        width: calc(33.333% - 13.333px);
    }
}

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

.icon-check {
    background: var(--secondary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.support-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid #e2e8f0;
}

.step-card {
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: #ffffff;
    border: 1px solid #e2e8f0; color: #334155;
    text-align: center;
    width: 100%;
}

@media (min-width: 768px) {
    .step-card {
        width: calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .step-card {
        width: calc(33.333% - 20px);
    }
}

.support-card:hover, .step-card:hover {
    transform: translateY(-10px);
}

.support-card:hover { box-shadow: var(--shadow-md); }
.step-card:hover { background: #f8fafc; }

.support-icon, .step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.support-card h3, .step-card h3 {
    margin-bottom: 10px;
}

.step-card h3 { color: var(--text-main); }
.step-card p { color: var(--text-light); }

/* Results */
.result-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.result-list {
    margin-top: 30px;
}

.result-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.chart-illustration {
    padding: 20px;
}

/* Plans */
.plans-grid {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;*/
    display: grid;
    /* 1:2 の比率で2カラムに分割 */
    grid-template-columns: 1fr 2fr; 
    gap: 40px;
    margin-top: 50px;
}
 .plus{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10px;
    font-size: 2rem;
 }
.plan-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

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

.plan-card.featured {
    border: 2px solid var(--secondary-color);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.plan-header {
    padding: 30px;
    text-align: center;
}

.plan-header h3 {
    color: var(--white);
    margin: 0;
}

.plan-body {
    padding: 40px 30px;
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.price-label { display: block; font-weight: 600; color: var(--text-light); margin-bottom: 5px;}
.price-amount { font-size: 3.5rem; font-weight: 900; line-height: 1;}
.price-amount.small { font-size: 2rem; }
.price-unit { font-size: 1rem; font-weight: 600;}

.plan-price-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.price-item { text-align: center; }
.price-plus { font-size: 2rem; font-weight: 700; color: var(--text-light); }

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-main);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.plan-features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li.plan-note {
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: none;
    padding-top: 15px;
}

.plan-features li.plan-note::before {
    content: none;
}

.premium{
    display: flex;
    justify-content: end;
}
/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(15, 56, 105, 0.9), rgba(15, 56, 105, 0.9)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: var(--white);
    text-align: center;
}

.cta-card h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features span {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

/* Form */
.rw-form-container {
    max-width: 700px;
}

.web-renewal-form-wrapper {
    padding: 40px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
}

.web-renewal-form-wrapper .wpcf7 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

.web-renewal-form-wrapper .wpcf7 br {
    display: none !important;
}

.web-renewal-form-wrapper .wpcf7 p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
}

.web-renewal-form-wrapper .wpcf7-form-control-wrap {
    display: block !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

.web-renewal-form-wrapper .wpcf7 {
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: inherit !important;
}

.web-renewal-form-wrapper .rw-form-group {
    margin-bottom: 25px !important;
}

.web-renewal-form-wrapper .rw-form-group label {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

.web-renewal-form-wrapper .required {
    background: #ef4444 !important;
    color: var(--white) !important;
    font-size: 0.75rem !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    margin-left: 10px !important;
    display: inline-block !important;
    font-weight: normal !important;
}

.web-renewal-form-wrapper .rw-form-group input, 
.web-renewal-form-wrapper .rw-form-group textarea,
.web-renewal-form-wrapper .rw-form-group select,
.web-renewal-form-wrapper .wpcf7-form-control {
    width: 100% !important;
    padding: 15px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    transition: var(--transition) !important;
    background: #fff !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.web-renewal-form-wrapper .rw-form-group input:focus, 
.web-renewal-form-wrapper .rw-form-group textarea:focus,
.web-renewal-form-wrapper .rw-form-group select:focus,
.web-renewal-form-wrapper .wpcf7-form-control:focus {
    outline: none !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

.web-renewal-form-wrapper input[type="submit"] {
    width: auto !important;
    padding: 18px 40px !important;
    background: var(--gradient-main) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 30px !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.web-renewal-form-wrapper input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3) !important;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 60px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 40px;
}

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

.footer-info p {
    margin-bottom: 10px;
}

.footer-info a {
    color: var(--secondary-color);
}

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

.footer-links p {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes growUp {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .result-container { grid-template-columns: 1fr; }
    .nav { display: none; }
    .section { padding: 60px 0; }
    .hero { padding: 120px 0 60px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-desc { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .plan-price-group { flex-direction: column; gap: 5px; }
    /*.price-plus { display: block; }*/
    .price-amount { font-size: 2.8rem; }
    .web-renewal-form-wrapper { padding: 20px; }
    .rw-btn-large { padding: 14px 24px; font-size: 1rem; }
    .cta-card h2 { font-size: 1.8rem; }
    .cta-features span { font-size: 0.85rem; padding: 8px 15px; }
    .mockup-body { padding: 20px; }
    .mockup-body h2 { font-size: 1.2rem; }
    .mockup-bars { height: 100px; margin-top: 20px; }
    .bar { width: 25px; }
    .problems-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .premium{flex-direction: column;}
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.5rem; }
    .plan-body { padding: 25px 15px; }
    .plan-header { padding: 20px; }
    .price-amount { font-size: 2.2rem; }
    .price-amount.small { font-size: 1.5rem; }
    .cta-card h2 { font-size: 1.5rem; }
    .support-card, .step-card { padding: 25px 15px; }
    .result-list li { font-size: 0.95rem; }
    .rw-form-group label { font-size: 0.9rem; }
}
/* =========================================
   Server LP Styles
   ========================================= */

.server-stats-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
}
.stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}
.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Domain Section */
.domain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 1024px) {
    .domain-grid { grid-template-columns: 1fr 1fr; }
}
.domain-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}
.domain-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.domain-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
@media (max-width: 480px) {
    .domain-prices { grid-template-columns: 1fr; }
}
.d-price-item {
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px 10px;
    background: #f8fafc;
}
.d-price-item h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-color); }
.d-price-item .price { font-size: 1.8rem; font-weight: bold; color: var(--secondary-color); }
.d-price-item .yen { font-size: 1rem; font-weight: normal; }
.d-price-item .tax { font-size: 0.8rem; color: #64748b; margin-bottom: 15px; }
.next-year { border-top: 1px dashed #cbd5e1; padding-top: 10px; font-size: 0.9rem; }
.next-year span { display: block; font-size: 0.8rem; color: #64748b; margin-bottom: 5px; }
.next-year p { font-weight: bold; margin: 0; }

.transfer-features { list-style: none; padding: 0; margin-bottom: 20px; }
.transfer-features li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.transfer-price-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.transfer-price-box .label { display: block; font-size: 1.1rem; margin-bottom: 5px; }
.transfer-price-box .price { font-size: 2.2rem; font-weight: bold; color: #16a34a; }
.transfer-price-box .yen { font-size: 1.2rem; font-weight: normal; }

/* Server Plans Section */
.server-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.server-plan {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}
.server-plan:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.server-plan.featured { border: 3px solid var(--primary-color); transform: scale(1.08); z-index: 10; box-shadow: var(--shadow-md); }
.server-plan.featured:hover { transform: scale(1.08) translateY(-10px); box-shadow: var(--shadow-lg); }
.popular-badge {
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 0 0 8px 8px;
    text-align: center;
    line-height: 1.2;
    z-index: 20;
}
.s-plan-header {
    padding: 30px;
    text-align: center;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.s-plan-header h3 { font-size: 1.3rem; margin-bottom: 15px; }
.s-price { display: flex; align-items: baseline; justify-content: center; gap: 5px; }
.s-price .label { font-size: 0.9rem; color: #64748b; }
.s-price .amount { font-size: 2.5rem; font-weight: bold; color: var(--primary-color); }
.s-price .unit { font-size: 0.9rem; color: #64748b; }

.server-plan.featured .s-plan-header { background: var(--primary-color); color: var(--white); border-bottom: none; }
.server-plan.featured .s-plan-header h3 { color: var(--white); }
.server-plan.featured .s-price .label, .server-plan.featured .s-price .unit { color: #cbd5e1; }
.server-plan.featured .s-price .amount { color: var(--secondary-color); font-size: 3rem; }

.s-features { list-style: none; padding: 0; margin: 0; }
.s-features li { padding: 15px 25px; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; }
.s-features li:last-child { border-bottom: none; }
.f-label { font-size: 0.95rem; color: #475569; }
.f-value { font-weight: bold; color: var(--text-color); }
.f-value.check { color: #10b981; }
.f-value.cross { color: #ef4444; font-weight: normal; }



/* === PDF Content Integration Styles === */

/* Purpose Flow */
.purpose-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.purpose-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    width: 100%;
    padding: 30px;
    gap: 30px;
    border: 1px solid var(--border-color);
}
.purpose-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: inset 0 -5px 0 rgba(0,0,0,0.1);
}
.purpose-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.purpose-content p {
    color: var(--text-light);
    line-height: 1.6;
}
.purpose-arrow {
    font-size: 2rem;
    color: var(--border-color);
    margin: 10px 0;
}

/* Concept Grid */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.concept-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.concept-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.concept-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.concept-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.6;
}
.concept-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Strategic Steps Grid */
.step-block {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}
.step-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.8;
    line-height: 1;
}
.step-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.step-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Web Renewal Simulator */
.renewal-simulator {
    margin-top: 60px;
    background: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.15);
}
.renewal-sim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.renewal-sim-control {
    margin-bottom: 20px;
}
.renewal-sim-control label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.renewal-sim-input,
.renewal-sim-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.renewal-sim-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232563eb%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 12px auto;
}
.renewal-sim-input:focus,
.renewal-sim-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.renewal-sim-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.renewal-sim-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
}
.renewal-sim-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.renewal-sim-results {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.renewal-sim-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}
.renewal-sim-result-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.renewal-sim-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
}
.renewal-sim-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}
.renewal-sim-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}
.renewal-sim-result-row.total .renewal-sim-label {
    font-size: 1.3rem;
    color: var(--text-dark);
}
.renewal-sim-result-row.total .renewal-sim-price {
    font-size: 2.5rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .renewal-simulator { padding: 30px 20px; }
    .renewal-sim-grid { grid-template-columns: 1fr; gap: 20px; }
    .renewal-sim-result-row { flex-direction: column; align-items: flex-start; gap: 5px; }
    .renewal-sim-result-row.total { flex-direction: column; align-items: flex-start; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .purpose-card { flex-direction: column; text-align: center; padding: 20px; }
    .purpose-icon { width: 80px; height: 80px; font-size: 1.2rem; }
    .concept-grid { grid-template-columns: 1fr; }
    .strategic-steps-grid { grid-template-columns: 1fr; }
    .step-block { flex-direction: column; text-align: center; align-items: center; }
}
