@charset "utf-8";

/* ==========================================================================
   Custemplate Design System V2 (Reference: MonsterOne, Imweb)
   ========================================================================== */

/* --- 1. Root Variables & Reset --- */
:root {
    /* Colors */
    --pt-primary: #2563ea;
    /* Modern Blue (MonsterOne Action Color) */
    --pt-primary-dark: #1d4ed8;
    /* Hover State */
    --pt-secondary: #0f172a;
    /* Slate 900 (Headings) */
    --pt-text: #475569;
    /* Slate 600 (Body Text) */
    --pt-bg: #f8fafc;
    /* Slate 50 (Background) */
    --pt-white: #ffffff;
    --pt-border: #e2e8f0;
    /* Slate 200 */
    --pt-success: #10b981;
    --pt-warning: #f59e0b;
    --pt-danger: #ef4444;

    /* Typography */
    /*     --pt-font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif; */

    /* Spacing & Layout */
    --pt-container-width: 82.5rem;
    /* Wide Container */
    --pt-header-height: 5rem;
    --pt-radius-sm: 0.375rem;
    --pt-radius-md: 0.75rem;
    --pt-radius-lg: 1.25rem;

    /* Shadows (Elevation) */
    --pt-shadow-sm: 0 1px 0.125rem 0 rgb(0 0 0 / 0.05);
    --pt-shadow-md: 0 0.25rem 0.375rem -1px rgb(0 0 0 / 0.1), 0 0.125rem 0.25rem -0.125rem rgb(0 0 0 / 0.1);
    --pt-shadow-lg: 0 0.625rem 0.9375rem -0.1875rem rgb(0 0 0 / 0.1), 0 0.25rem 0.375rem -0.25rem rgb(0 0 0 / 0.1);
    --pt-shadow-xl: 0 1.25rem 1.5625rem -0.3125rem rgb(0 0 0 / 0.1), 0 0.5rem 0.625rem -0.375rem rgb(0 0 0 / 0.1);
}

/* Pretendard CDN */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

body {
    /*     font-family: var(--pt-font-sans); */
    color: var(--pt-text);
    background-color: var(--pt-bg);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: var(--pt-primary);
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--pt-secondary);
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

* {
    box-sizing: border-box;
}

/* --- 2. Layout & Containers --- */
.pt-container {
    max-width: var(--pt-container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.pt-section {
    padding: 5rem 0;
    position: relative;
}

/* --- 3. Header (MonsterOne Style) --- */
.pt-header {
    height: var(--pt-header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pt-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.pt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.pt-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pt-secondary);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.pt-nav {
    display: flex;
    gap: 2rem;
}

.pt-nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pt-secondary);
    padding: 0.5rem 0;
    position: relative;
}

.pt-nav-link:hover,
.pt-nav-link.active {
    color: var(--pt-primary);
}

.pt-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background: var(--pt-primary);
}

/* --- 4. Footer (Dark Theme) --- */
.pt-footer {
    background: #0f172a;
    /* Darker than slate-900 */
    color: #94a3b8;
    padding: 5rem 0 2.5rem;
    font-size: 0.9375rem;
}

.pt-footer h5 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.pt-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    /* Brand + 3 Links */
    gap: 3.75rem;
    margin-bottom: 3.75rem;
}

.pt-footer-list li {
    margin-bottom: 0.75rem;
}

.pt-footer-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.pt-copyright {
    border-top: 1px solid #1e293b;
    padding-top: 1.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- 5. Components --- */

/* Buttons */
.pt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--pt-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 0.5rem;
}

.pt-btn-primary {
    background: var(--pt-primary);
    color: white;
    border: 1px solid transparent;
}

.pt-btn-primary:hover {
    background: var(--pt-primary-dark);
    color: white;
    box-shadow: var(--pt-shadow-md);
    transform: translateY(-1px);
}

.pt-btn-outline {
    background: transparent;
    border: 1px solid var(--pt-border);
    color: var(--pt-secondary);
}

.pt-btn-outline:hover {
    background: var(--pt-bg);
    border-color: #cbd5e1;
    color: var(--pt-secondary);
}

.pt-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--pt-radius-md);
}

.pt-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: 0.25rem;
}

/* Cards (Template/Product) */
.pt-card {
    background: white;
    border-radius: var(--pt-radius-md);
    border: 1px solid var(--pt-border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pt-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pt-shadow-xl);
    border-color: #cbd5e1;
}

.pt-card-thumb {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    /* Aspect Ratio */
    background: #f1f5f9;
}

.pt-card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pt-card:hover .pt-card-thumb img {
    transform: scale(1.05);
}

.pt-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    /* Dark Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pt-card:hover .pt-card-overlay {
    opacity: 1;
}

/* Badges */
.pt-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 62.4375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pt-badge-primary {
    background: #dbeafe;
    color: var(--pt-primary);
}

.pt-badge-dark {
    background: #e2e8f0;
    color: #475569;
}

/* Pricing Tables (Dotcle Style) */
.pt-pricing-card {
    background: white;
    border: 1px solid var(--pt-border);
    border-radius: var(--pt-radius-lg);
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s;
}

.pt-pricing-card.featured {
    border: 0.125rem solid var(--pt-primary);
    box-shadow: var(--pt-shadow-lg);
    position: relative;
}

.pt-pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pt-secondary);
    margin-bottom: 1.25rem;
}

.pt-pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pt-secondary);
    margin-bottom: 0.625rem;
    line-height: 1;
}

.pt-pricing-price span {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.pt-pricing-features {
    margin: 1.875rem 0;
}

.pt-pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.9375rem;
    color: var(--pt-text);
}

.pt-pricing-features i {
    color: var(--pt-primary);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Sidebar Custom */
.pt-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.625rem;
    border-bottom: 0.125rem solid var(--pt-secondary);
}

.pt-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.pt-checkbox input {
    margin-right: 0.625rem;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 0.25rem;
    border: 1px solid #cbd5e1;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 1.25rem;
}

.mb-40 {
    margin-bottom: 2.5rem;
}

.mb-60 {
    margin-bottom: 3.75rem;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

/* Responsive */
@media (max-width: 64rem) {
    .pt-container {
        padding: 0 1.25rem;
    }

    .pt-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 48rem) {
    .pt-nav {
        display: none;
    }

    /* Mobile Menu Trigger logic needed */
    .pt-footer-top {
        grid-template-columns: 1fr;
    }

    .pt-pricing-grid {
        grid-template-columns: 1fr;
    }
}