/* --- Premium Product Section Styling --- */
.premium-card-section {
    background-color: #ffffff;
    overflow: hidden;
}

.product-badge {
    display: inline-block;
    padding: 7px 20px;
    background: rgba(227, 30, 36, 0.1);
    color: #e31e24;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.p-pill {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #3a3d74;
    transition: 0.3s;
}

.p-pill:hover {
    background: #3a3d74;
    color: white;
    transform: translateY(-3px);
}

/* --- Interactive Mockup Design --- */
.interactive-vcard-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.vcard-glass-mockup {
    width: 320px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    animation: floatCard 4s infinite ease-in-out;
}

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

.online-status {
    font-size: 10px;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.user-avatar-circle {
    width: 80px;
    height: 80px;
    background: #eef1f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #3a3d74;
}

.mock-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.m-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.m-btn.blue { background: #3a3d74; }
.m-btn.green { background: #25d366; }
.m-btn.red { background: #e31e24; }

.qr-placeholder {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #333;
}

.card-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(58, 61, 116, 0.2) 0%, transparent 70%);
    z-index: 1;
}

/* Button Styles */
.btn-main-dark {
    background: #3a3d74;
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline-red {
    border: 2px solid #e31e24;
    color: #e31e24;
    padding: 13px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
}

.btn-main-dark:hover { background: #e31e24; color: white; }
.btn-outline-red:hover { background: #e31e24; color: white; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@media (max-width: 768px) {
    .vcard-glass-mockup { width: 100%; }
    .action-btns-wrap { display: flex; flex-direction: column; gap: 15px; }
    .btn-outline-red { margin-left: 0 !important; }
}

/* --- Customized Card Specific Styling --- */
.custom-card-section {
    background-color: #f9f9fb;
    position: relative;
    overflow: hidden;
}

.premium-badge {
    display: inline-block;
    padding: 7px 20px;
    background: #3a3d74;
    color: white;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.custom-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.c-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.c-feature:hover {
    box-shadow: 0 10px 25px rgba(58, 61, 116, 0.1);
    transform: translateX(5px);
}

.c-feature i {
    color: #e31e24;
    font-size: 20px;
}

.c-feature span {
    font-weight: 600;
    color: #333;
}

/* --- Visual Mockup Styling --- */
.custom-visual-wrapper {
    position: relative;
    padding: 20px;
}

.premium-mockup {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-10deg);
    transition: 0.5s;
}

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

.mock-top-bar {
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.mock-img-area {
    height: 350px;
    overflow: hidden;
}

.mock-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mock-info-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-small {
    width: 30px;
    height: 30px;
    background: #e31e24;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* Floating Elements */
.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.shape.s1 {
    width: 200px;
    height: 200px;
    background: rgba(227, 30, 36, 0.1);
    top: -20px;
    left: -20px;
}

.shape.s2 {
    width: 150px;
    height: 150px;
    background: rgba(58, 61, 116, 0.1);
    bottom: -30px;
    right: 20px;
}

@media (max-width: 768px) {
    .custom-features-grid { grid-template-columns: 1fr; }
    .premium-mockup { transform: none; }
}

/* --- Basic Mini Site Styling --- */
.mini-site-section {
    background-color: #ffffff;
    position: relative;
    padding: 80px 0;
}

.mini-site-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(58, 61, 116, 0.1);
    color: #3a3d74;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.mini-site-features {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.ms-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ms-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    color: #e31e24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.ms-feature:hover .ms-icon {
    background: #e31e24;
    color: white;
}

.ms-text h6 {
    margin-bottom: 2px;
    font-weight: 700;
    color: #333;
}

.ms-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* --- Browser Mockup Styling --- */
.ms-visual-wrap {
    position: relative;
}

.browser-mockup {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    position: relative;
}

.browser-header {
    background: #f1f1f1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.b-dots {
    display: flex;
    gap: 6px;
}

.b-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.b-dots span:nth-child(1) { background: #ff5f56; }
.b-dots span:nth-child(2) { background: #ffbd2e; }
.b-dots span:nth-child(3) { background: #27c93f; }

.b-url {
    background: white;
    font-size: 11px;
    padding: 4px 20px;
    border-radius: 50px;
    color: #999;
    flex-grow: 1;
    text-align: center;
}

.browser-body {
    overflow: hidden;
}

.browser-body img {
    width: 100%;
    transition: 5s ease-in-out;
}

.browser-mockup:hover .browser-body img {
    transform: translateY(-50%); 
}

.ms-orb {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
    z-index: 1;
}

@media (max-width: 768px) {
    .mini-site-features { grid-template-columns: 1fr; }
}

section {
    scroll-margin-top: 120px;
}