/* refined landing.css - Premium Jewelry ERP Design */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-brown: #2d1e12;
    --gold-accent: #c5a059;
    --gold-hover: #b38e4d;
    --bg-ivory: #FDF9F3;
    --header-bg: rgba(255, 251, 242, 0.95);
    --text-main: #2d3436;
    --text-muted: #636e72;
    --card-bg: #ffffff;
    --footer-bg: #1a120b;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

/* Fix scrolling offset for sticky header */
[id] {
    scroll-margin-top: 100px;
}

#hero {
    scroll-margin-top: 0;
}

body {
    background-color: var(--bg-ivory);
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    margin: 0;
    overflow-x: hidden;
    display: block;
    height: auto;
    width: 100%;
    min-height: 100vh; /* Ensure body is at least full height */
}

/* --- Header --- */
.landing-header {
    background: var(--header-bg);
    padding: 1rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.header-nav a {
    text-decoration: none;
    color: var(--primary-brown);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.header-nav a:hover {
    color: var(--gold-accent);
}

.login-btn {
    padding: 10px 24px;
    border: 1.5px solid var(--gold-accent);
    border-radius: 8px;
    color: var(--gold-accent) !important;
    font-weight: 600 !important;
}

.login-btn:hover {
    background: var(--gold-accent);
    color: white !important;
}

/* --- Hero Section --- */
.hero-section {
    display: flex;
    min-height: 90vh;
    align-items: center;
    padding: 2rem 8%;
    gap: 5rem;
    background: radial-gradient(circle at 75% 50%, #fffdfa 0%, var(--bg-ivory) 100%);
}

.hero-text {
    flex: 1.2;
    min-width: 450px;
    animation: slideInLeft 1s ease-out;
}

.hero-visuals {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatingHero 4s ease-in-out infinite;
}

.software-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: var(--transition-smooth);
}

.software-mockup:hover {
    transform: scale(1.02);
}

@keyframes floatingHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--primary-brown);
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    line-height: 1.8;
    max-width: 650px;
}

.btn-primary {
    display: inline-block;
    padding: 22px 55px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b38e4d 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.4);
}

/* --- Section Design --- */
.section-header, .section-header-left {
    text-align: left;
    margin-bottom: 5rem;
    padding-left: 1.5rem;
}

.section-title, .section-title-sm {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-brown);
    font-weight: 800;
}

.section-subtitle, .section-subtitle-sm {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
}

/* --- About Section --- */
.info-section {
    padding: 10rem 8%;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-ivory);
    padding: 4rem 3rem;
    border-radius: 30px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-15px);
    background: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--gold-accent);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-brown);
}

/* --- Products Section --- */
.solutions-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    max-width: 1450px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.solution-group {
    background: rgba(255, 255, 255, 0.5);
    padding: 2.5rem;
    border-radius: 40px;
    border: 1px dashed var(--gold-accent);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 350px;
}

.retail-group {
    flex: 2;
    min-width: 700px;
}

.hallmark-group {
    max-width: 450px;
}

.group-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.solution-label {
    display: inline-block;
    background: var(--primary-brown);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(45, 30, 18, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.solution-label:hover {
    background: var(--gold-accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.group-cards {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    max-width: 350px;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #e67e22;
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.highlight-card {
    border: 2px solid var(--gold-accent);
    background: linear-gradient(to bottom, #ffffff, #fffdec);
    flex: 0 1 100%; /* Take full width within its group context if solo */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border-color: var(--gold-accent);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.product-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-details {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-brown);
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(45, 30, 18, 0.15);
}

.btn-details:hover {
    background: var(--gold-accent);
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.25);
}

/* --- Modal System --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 700px;
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gold-accent);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--bg-ivory);
    padding-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: 900;
}

/* --- Contact Section --- */
.contact-section {
    padding: 10rem 8%;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-ivory);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-weight: bold;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.contact-form {
    background: var(--bg-ivory);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-brown);
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-brown);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background: var(--gold-accent);
    transform: translateY(-3px);
}

/* --- Footer --- */
.landing-footer {
    padding: 8rem 8% 4rem;
    background: var(--footer-bg);
    color: rgba(255,255,255,0.7);
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5rem;
}

.footer-brand h2 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    line-height: 1.8;
}

.footer-links h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

/* --- Animations --- */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1200px) {
    .solutions-container { gap: 1.5rem; }
    .retail-group { min-width: 100%; }
}

@media (max-width: 1100px) {
    .landing-header { padding: 1rem 5%; }
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 6rem 5% 3rem;
        gap: 3rem;
        min-height: auto;
    }
    .hero-text { 
        min-width: 100%; 
        animation: slideInUp 1s ease-out;
    }
    .hero-title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .hero-subtitle { margin: 0 auto 2.5rem; font-size: 1.1rem; }
    .header-nav { gap: 1.5rem; }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 850px) {
    .header-nav { display: none; } /* Could add a hamburger menu here later */
    .solution-group { min-width: 100%; padding: 2rem 1.5rem; }
    .group-cards { gap: 1rem; }
    .product-card { max-width: 100%; }
    .main-connector { display: none; }
}

@media (max-width: 600px) {
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-form { padding: 2.5rem 1.5rem; }
    .modal-content { padding: 2rem; }
    .modal-title { font-size: 1.8rem; }
    .hero-section { padding-top: 4rem; }
    .info-section, .products-section, .contact-section { padding: 5rem 5%; }
    .feature-card { padding: 2.5rem 1.5rem; }
}

/* --- Solution Features Detail Section --- */
.features-detail-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #fff 0%, #fdf8ef 100%);
    scroll-margin-top: 80px;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.detail-close-btn {
    position: absolute;
    top: -20px;
    right: 0;
    width: 45px;
    height: 45px;
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-brown);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    z-index: 10;
}

.detail-close-btn:hover {
    background: var(--gold-accent);
    color: white;
    transform: rotate(90deg);
}

.detail-content {
    position: relative;
}

.detail-content.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.detail-header {
    margin-bottom: 4rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.detail-feature-card {
    background: white;
    padding: 1.8rem 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(45, 30, 18, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.detail-feature-card:hover {
    transform: translateX(10px);
    border-color: var(--gold-accent);
}

.check-icon {
    background: var(--gold-accent);
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.detail-feature-card p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--primary-brown);
    font-weight: 500;
}

/* --- Category Based Features --- */
.category-block {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(45, 30, 18, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.05);
    transition: var(--transition-smooth);
}

.category-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 30, 18, 0.08);
    border-color: var(--gold-accent);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #fdf8ef;
    padding-bottom: 1rem;
}

.cat-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.category-header h4 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--primary-brown);
    font-weight: 700;
}

.cat-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--gold-accent);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

/* --- Comparison Section --- */
.comparison-section {
    padding: 8rem 5%;
    background: #fff;
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem 2.5rem;
    text-align: left;
    border-bottom: 1px solid #f7f7f7;
}

.comparison-table th {
    background: var(--primary-brown);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { 
    font-weight: 700; 
    color: var(--primary-brown); 
    width: 25%; 
    background: #fdfaf5;
}

.comparison-table th {
    padding: 2rem 2.5rem;
    font-size: 1rem;
    letter-spacing: 1.5px;
}

.comparison-table td {
    padding: 2rem 2.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
    vertical-align: middle;
}

.comparison-table td strong {
    color: var(--primary-brown);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.15rem;
}

.comparison-table td small {
    color: #999;
    font-size: 0.85rem;
    font-weight: 400;
}

.comparison-table tbody tr:hover td {
    background-color: #fcfcfc;
}

/* Remove highlights */
.col-highlight, th.col-highlight, .reco-badge { display: none !important; }

/* --- Pricing Section --- */
.pricing-section {
    padding: 8rem 5%;
    background: #fdf8ef;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.pricing-card.professional {
    transform: scale(1.05);
    border: 2px solid var(--gold-accent);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: white;
    padding: 6px 25px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-header h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--primary-brown); }
.price { font-size: 2.5rem; font-weight: 800; color: var(--gold-accent); margin-bottom: 1rem; }
.pricing-header p { color: var(--text-muted); margin-bottom: 2.5rem; }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f9f9f9;
    color: var(--primary-brown);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--gold-accent);
    font-weight: bold;
}

.pricing-features li.not-included {
    color: #ccc;
    text-decoration: none;
}

.pricing-features li.not-included::before {
    content: '✕';
    color: #ff7675;
}

/* --- Pricing Toggle --- */
.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.toggle-label.active {
    color: var(--primary-brown);
    font-weight: 800;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--gold-accent);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--gold-accent);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.pricing-grid-online {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1400px;
    gap: 1.5rem;
}

/* --- Launch Deal Badge --- */
.launch-deal-badge {
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 12px 12px 0 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    white-space: nowrap;
    letter-spacing: 1px;
    box-shadow: 0 -4px 10px rgba(255, 71, 87, 0.2);
    animation: pulse-deal 2s infinite ease-in-out;
    z-index: 10;
}

@keyframes pulse-deal {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); background: #ff6b81; }
}

.price-monthly {
    font-size: 2.8rem !important;
    color: #e67e22 !important; /* Vibrant highlight color */
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-monthly small {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.price-annual {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1300px) {
    .pricing-grid-online {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 1100px) {
    .pricing-card.professional { transform: scale(1); }
    .pricing-grid { gap: 4rem; }
}

/* --- E-commerce Section Layout --- */
.section-header-left {
    text-align: left;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.section-title-sm {
    font-size: 2.8rem;
    color: var(--primary-brown);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle-sm {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.2;
}

/* --- E-commerce Product Grid (Modern Shopping Style) --- */
.ecommerce-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 2rem;
}

.eco-product-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.eco-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #d1d1d1;
}

.eco-img-wrapper {
    width: 100%;
    height: 340px;
    background: #fcfcfc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
}

.eco-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.eco-img-wrapper:hover img {
    transform: scale(1.1);
}

.eco-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.eco-info {
    padding: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.eco-name {
    font-size: 1.8rem;
    color: var(--primary-brown);
    font-weight: 800;
    margin: 0;
}

.eco-rating {
    color: #f1c40f;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eco-rating small {
    color: #94a3b8;
    font-size: 0.9rem;
}

.eco-price {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.eco-label {
    font-size: 0.95rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.eco-amount {
    font-size: 2.2rem;
    color: #0f172a;
    font-weight: 900;
}

.eco-amount small {
    font-size: 1.1rem;
    color: #64748b;
}

.eco-launch-date {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #e67e22;
    font-weight: 600;
}

.eco-warranty {
    display: block;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 0.3rem;
    font-weight: 500;
}

.eco-btn {
    background: #ffd814;
    color: #0f1111;
    border: 1px solid #fcd200;
    padding: 16px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 1rem;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
}

.eco-btn:hover {
    background: #f7ca00;
    border-color: #f2c200;
}

.eco-icon-placeholder {
    font-size: 7rem;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.hallmark-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

@media (max-width: 1024px) {
    .ecommerce-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}


@media (max-width: 768px) {
    .product-display-grid { margin-left: 5%; margin-top: 4rem; }
    .product-card-v2 { padding-bottom: 1.5rem; }
    .card-photo { height: 220px; }
}

/* --- Features Detail Redesign (Visual Highlights) --- */
.features-detail-section {
    padding: 8rem 8%;
    background: #fdfdfd;
}

.detail-container {
    max-width: 1300px;
    margin: 0 auto;
}

.detail-content {
    background: white;
    border-radius: 40px;
    padding: 5rem 4rem;
    box-shadow: 0 30px 100px rgba(0,0,0,0.06);
    position: relative;
    border: 1px solid #f0f0f0;
}

.detail-close-btn {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.detail-close-btn:hover {
    color: #ff4757;
    transform: rotate(90deg);
}

.detail-grid {
    display: grid;
    gap: 2.5rem;
    margin-top: 4rem;
}

.category-block.highlighted {
    background: #ffffff;
    border-radius: 25px;
    padding: 3rem;
    border: 1.5px solid #f8f8f8;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.category-block.highlighted:hover {
    transform: translateY(-8px);
    border-color: var(--gold-accent);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.12);
}

.category-visual {
    margin-bottom: 1.5rem;
}

.cat-icon-glow {
    width: 80px;
    height: 80px;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    filter: drop-shadow(0 5px 10px rgba(212, 175, 55, 0.2));
}

.category-visual h4 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    font-weight: 800;
    margin: 0;
}

.cat-highlight {
    font-size: 1rem;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cat-bullet-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.cat-bullet-grid span {
    background: #fdfdfd;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    border: 1px solid #f0f0f0;
}

.detail-feature-card.simple {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    border: 1px solid #f5f5f5;
}

.check-icon {
    background: #27ae60;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .detail-content { padding: 3rem 1.5rem; }
    .category-block.highlighted { padding: 2.5rem 1.5rem; }
}

/* Amazon Rows Cleanup of old rectangle styles */
.product-rectangle, .product-visual, .product-info-box, .product-title, .badge, .feature-columns, .btn-main {
    display: none;
}

/* --- Value Projection & Warranty Styles --- */
.value-projection-section {
    padding: 10rem 8%;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.projection-card-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-top: 4rem;
}

.projection-calc {
    background: #fdfdfd;
    padding: 3.5rem;
    border-radius: 30px;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.calc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.calc-header h3 {
    font-size: 1.6rem;
    color: var(--primary-brown);
    margin: 0;
    font-weight: 800;
}

.year-toggle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.period-pills {
    display: flex;
    background: #eee;
    padding: 4px;
    border-radius: 12px;
}

.period-pills label {
    cursor: pointer;
    position: relative;
    margin: 0;
}

.period-pills input {
    position: absolute;
    opacity: 0;
}

.period-pills span {
    padding: 8px 20px;
    display: inline-block;
    border-radius: 10px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.period-pills input:checked + span {
    background: white;
    color: var(--primary-brown);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.projection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.proj-box {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition-smooth);
}

.proj-box.offline { background: #f8f9fa; border: 1px solid #dee2e6; }
.proj-box.online { background: #fffcf0; border: 1px solid #f8e8a6; }

.type-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.total-v {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.proj-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.warranty-note {
    font-style: italic;
    color: #e67e22;
    font-weight: 500;
}

/* Warranty Shield */
.warranty-shield {
    background: var(--primary-brown);
    color: white;
    padding: 4rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shield-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shield-icon { font-size: 2.5rem; }
.shield-header h3 { font-size: 1.8rem; margin: 0; color: var(--gold-accent); }

.shield-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.s-icon {
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.s-info h4 { font-size: 1.1rem; margin: 0 0 0.5rem 0; color: white; }
.s-info p { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.5; }

/* --- Full Page Responsiveness Fixes --- */

/* Mobile Nav Optimization */
@media (max-width: 991px) {
    .header-nav {
        display: none; 
    }
    
    .landing-header { padding: 1rem 5%; }
}

/* Global Responsiveness */
@media (max-width: 768px) {
    .value-projection-section { padding: 6rem 5%; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-main, .btn-secondary { width: 100%; text-align: center; }
    
    .pricing-grid-online {
        grid-template-columns: 1fr !important;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
        margin: 0 -5%;
        padding: 0 5%;
    }
    
    .comparison-table { min-width: 600px; }
    
    /* Projection Section Stack */
    .projection-card-wrapper {
        grid-template-columns: 1fr;
    }
    
    .projection-grid {
        grid-template-columns: 1fr;
    }
    
    .projection-calc, .warranty-shield { padding: 2.5rem 1.5rem; }
    
    .total-v { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .section-title-sm { font-size: 2rem; }
    .section-subtitle-sm { font-size: 1rem; }
    .calc-header h3 { font-size: 1.3rem; }
    .period-pills span { padding: 8px 12px; font-size: 0.85rem; }
}

@media (max-width: 1400px) {
    .pricing-grid-online {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

