:root {
    --primary: #2563eb;
    --secondary: #3b82f6;
    --accent: #f43f5e;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray: #64748b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
    --container-padding: 24px;
    --border-radius: 16px;
    --mobile-breakpoint: 768px;
    --tablet-breakpoint: 992px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

body {
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    height: 36px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    background-color: var(--primary);
    color: white !important;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-sm:hover {
    background-color: var(--secondary);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn:hover::after {
    left: 0;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--primary);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 96px 0;
}

.bg-light {
    background-color: #f5f7fa;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Plans */
.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-card.premium {
    border: 2px solid var(--accent);
    position: relative;
}

.plan-card.premium::before {
    content: '인기';
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.plan-name {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin: 16px 0;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 500;
    margin-right: 4px;
    vertical-align: super;
}

.plan-price .period {
    font-size: 16px;
    color: var(--gray);
    font-weight: 400;
}

.plan-description {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li i {
    color: var(--primary);
    font-size: 18px;
}

.plan-features.premium li i {
    color: var(--accent);
}

.plan-cta {
    text-align: center;
    margin-top: auto;
}

.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    gap: 8px;
}

.plan-btn.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
}

.plan-btn.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.plan-btn.btn-accent {
    background-color: var(--accent);
    color: white;
    border: none;
}

.plan-btn.btn-accent:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.plan-btn.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.plan-btn.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Demo Sites */
.demo-sites {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.demo-site img{
	width:100%;
}

.demo-site {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.demo-site:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.demo-site:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.demo-site:hover:before {
    opacity: 1;
}

.demo-site-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: var(--light);
    border-radius: 12px 12px 0 0;
}

.demo-site-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.demo-site:hover .demo-site-image::before {
    opacity: 1;
}

.demo-site-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.demo-site:hover .demo-site-image img {
    transform: scale(1.05);
}

.demo-site-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.demo-site-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
}

.demo-site-category i {
    font-size: 14px;
}

.demo-site h3 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.demo-site-description {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.demo-site-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
}

.demo-site-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
}

.demo-site-meta-item i {
    color: var(--primary);
    font-size: 16px;
}

.demo-site-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.demo-site-actions .btn {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-site-actions .btn i {
    font-size: 16px;
}

.demo-site-actions .btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.demo-site-actions .btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.demo-site-actions .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.demo-site-actions .btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature {
    width: 100%;
    max-width: 350px;
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    font-weight: bold;
}

/* FAQ Styles */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-nav-item {
    padding: 12px 24px;
    background: white;
    border-radius: 30px;
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--border);
    font-size: 15px;
}

.faq-nav-item:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.faq-nav-item.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.faq-category {
    margin-bottom: 48px;
    display: none;
}

.faq-category.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-category h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: var(--light);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 24px;
    color: var(--gray);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    margin-top: -1px;
    background: var(--light);
    transition: all 0.3s ease;
}

.faq-answer.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-question.active {
    background-color: var(--light);
    border-bottom: none;
}

.faq-question.active i {
    transform: rotate(180deg);
}


/* CTA Box */
.cta-box {
    text-align: center;
    background-color: white;
    border-radius: 10px;
    padding: 50px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary);
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 18px;
}

/* Comparison Table */
.comparison {
    overflow-x: auto;
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    text-align-last: center;
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--primary);
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Contact Form */
.contact-form {
    #background-color: white;
    #padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    background-color: var(--light);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.form-check-label {
    font-size: 14px;
    color: var(--gray);
}

.form-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4:after, .footer-contact h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* Modal Popup */
.modal-popup {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--dark);
    transform: rotate(90deg);
}

.modal-highlight {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

.modal-content h3 {
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.modal-content p {
    margin: 20px 0;
    color: var(--gray);
    line-height: 1.6;
}

.modal-content strong {
    color: var(--primary);
    font-weight: 600;
}

.promo-timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 24px 0;
}

.timer-item {
    background: white;
    padding: 12px;
    border-radius: 12px;
    min-width: 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.timer-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.timer-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
}

.btn-modal {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 24px;
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.modal-small {
    font-size: 13px;
    color: var(--gray);
    margin-top: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .modal-popup {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    
    .modal-content {
        max-width: none;
        padding: 30px;
    }
    
    .timer-item {
        min-width: 60px;
        padding: 8px;
    }
    
    .timer-value {
        font-size: 20px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .feature {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .social-icons {
        margin-top: 20px;
    }
    
    .demo-sites {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .demo-site-actions {
        grid-template-columns: 1fr;
    }
    
    .demo-site-actions .btn {
        padding: 14px 20px;
    }
    
    .faq-nav {
        gap: 8px;
    }
    
    .faq-nav-item {
        padding: 10px 16px;
        font-size: 14px;
        flex: 1;
        text-align: center;
        min-width: 140px;
    }
}

@media (max-width: 576px) {
    .demo-site {
        max-width: 100%;
    }
    
    .plan-card {
        max-width: 100%;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 24px;
    }
    
    .demo-sites {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .demo-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }
}

/* DB Service Styles */
.db-process {
    margin-top: 48px;
}

.db-process .row{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.db-process .col-md-6{
    margin: 10px;
}

.db-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.db-method {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.db-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.db-method.premium {
    border: 2px solid var(--accent);
    position: relative;
}

.db-method.premium::before {
    content: '프리미엄';
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.db-method h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.db-method img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.process-steps {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 24px;
    counter-reset: step;
}

.process-steps li {
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
    counter-increment: step;
}

.process-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.highlight-box {
    background: var(--light);
    border-radius: 12px;
    padding: 24px;
    margin-top: auto;
}

.highlight-box h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 18px;
}

/* Support Services */
.support-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.support-services .row{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.support-services .col-md-4{
    margin: 10px;
}


.support-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 24px;
}

.support-card h3 {
    color: var(--dark);
    margin-bottom: 16px;
    font-size: 20px;
}

.support-card p {
    color: var(--gray);
    line-height: 1.7;
}

.testimonials {
    padding: 40px 0;
}

.testimonial {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 14px;
}

/* Success Stories */
.success-stories {
    margin-top: 48px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.success-story {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.success-story:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.story-content {
    position: relative;
    padding-left: 24px;
    margin-bottom: 24px;
}

.story-content::before {
    content: '"';
    position: absolute;
    left: -8px;
    top: -16px;
    font-size: 48px;
    color: var(--primary);
    opacity: 0.2;
}

.story-content p {
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.story-author-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}

.story-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-author-info h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 4px;
}

.story-author-info p {
    color: var(--gray);
    font-size: 14px;
}

.story-metrics {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric i {
    color: var(--accent);
}

.metric span {
    color: var(--gray);
    font-size: 14px;
}

/* Demo Sites Grid */
.demo-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.demo-site-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.demo-site-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.demo-site-preview {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: var(--light);
}

.demo-site-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.demo-site-card:hover .demo-site-preview img {
    transform: scale(1.05);
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 24px;
}

.demo-site:hover .demo-overlay {
    opacity: 1;
}

.demo-overlay .btn-sm {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    background: var(--primary);
    color: white;
    border: none;
    min-width: 160px;
    text-align: center;
}

.demo-overlay .btn-sm:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.demo-overlay .btn-sm.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.demo-overlay .btn-sm.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.demo-site-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-site-content h3 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.demo-site-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.demo-site-content p:not(.demo-site-price) {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.demo-site-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.demo-site-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 14px;
}

.demo-site-features i {
    color: var(--primary);
    font-size: 14px;
}

.demo-site-features span:last-child {
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
}

.demo-site-actions {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.demo-site-actions .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.demo-site-actions .btn-link:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.demo-site-actions .btn-link::after {
    content: '→';
    transition: transform 0.3s;
}

.demo-site-actions .btn-link:hover::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .demo-sites-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .demo-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Demo Site Detail Page */
.demo-detail {
    padding: 48px 0;
}

.demo-detail-header {
    margin-bottom: 48px;
    text-align: center;
}

.demo-detail-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.demo-detail-price {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.demo-detail-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.demo-detail-actions .btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
}

.demo-detail-actions .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.demo-detail-actions .btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.demo-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 48px;
}

.demo-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.demo-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin: 48px 0;
    background: white;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.demo-description {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
}

.demo-description h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.demo-description h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.demo-description p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.demo-features {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    color: var(--dark);
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.feature-list li i {
    color: var(--primary);
    font-size: 20px;
    padding: 12px;
    background: var(--light);
    border-radius: 10px;
}

.demo-specs {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-top: 32px;
}

.demo-specs h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list .spec-label {
    color: var(--gray);
    font-weight: 500;
}

.specs-list .spec-value {
    color: var(--dark);
    font-weight: 600;
}

.demo-gallery {
    margin-top: 48px;
}

.demo-gallery h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .demo-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .demo-detail-header h1 {
        font-size: 28px;
    }
    
    .demo-detail-actions {
        flex-direction: column;
    }
    
    .demo-detail-actions .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Contact Wrapper Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    margin-top: 48px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info h2 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s;
}

.info-item:hover {
    background: var(--light);
    transform: translateX(8px);
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item div {
    flex-grow: 1;
}

.info-item h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-item p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

.social-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.social-contact h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.social-contact .social-icons {
    display: flex;
    gap: 16px;
}

.social-contact .social-icons a {
    width: 40px;
    height: 40px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social-contact .social-icons a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-info {
        padding: 24px;
    }
    
    .contact-info h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .info-item {
        padding: 12px;
        gap: 16px;
    }
    
    .info-item i {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .info-item h4 {
        font-size: 16px;
    }
    
    .info-item p {
        font-size: 14px;
    }
}

.demo-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 100%;
    padding: 20px;
    pointer-events: none;
}

.demo-site:hover .demo-actions {
    opacity: 1;
}

.demo-actions .btn {
    pointer-events: auto;
    min-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.demo-actions .btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* 기본형 템플릿 섹션 스타일 개선 */
.basic-template {
    background: white;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
}

.basic-template-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.basic-template-title {
    flex: 1;
}

.basic-template-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.basic-template-title p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

.basic-template-price {
    text-align: right;
    padding: 16px 24px;
    background: var(--light);
    border-radius: 12px;
}

.basic-template-price .amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.basic-template-price .period {
    color: var(--gray);
    font-size: 14px;
}

.basic-template-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
    padding: 12px;
    background: white;
    border-radius: 10px;
}

.feature-item div h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-item div p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.basic-template-cta {
    text-align: center;
    margin-top: 32px;
}

.basic-template-cta .btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .basic-template-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .basic-template-price {
        width: 100%;
        text-align: center;
    }
    
    .feature-item {
        padding: 12px;
    }
}