@import url('https://fonts.googleapis.com/css?family=Hind:400,300,600,500,700|Montserrat:400,700&display=swap'); /*[cite: 8] */

/* ==========================================================================
   Base Reset and Master Brand Variables (SiteWorks Skin)
   ========================================================================== */
:root {
    --primary-color: #333333; /*[cite: 8] */
    --accent-color: #d1694f;  /*[cite: 8] */
    --bg-light: #F8F9FA;      
    --bg-white: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.95);
    --text-color: #444444;    
    --text-muted: #666666;
    --border-color: #E2E8F0;
    --btn-radius: 8px; 
    --card-radius: 12px;
    --heading-font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif; /*[cite: 8] */
    --body-font: 'Hind', -apple-system, BlinkMacSystemFont, sans-serif; /*[cite: 8] */
    --card-shadow: 0 8px 30px -10px rgba(51, 51, 51, 0.08);
    --hover-shadow: 0 15px 35px -10px rgba(51, 51, 51, 0.15);
    --transition-speed: 0.3s;
}

* { margin: 0; padding: 0; box-sizing: border-box; } /*[cite: 7] */

/* Smooth scrolling and anchor offset for the one-pager */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
} /*[cite: 7] */

body { 
    font-family: var(--body-font); 
    line-height: 1.6; 
    color: var(--text-color); 
    background-color: var(--bg-white);
    overflow-x: hidden;
} /*[cite: 7] */

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; } /*[cite: 7] */
.text-center { text-align: center; } /*[cite: 7] */
.text-left { text-align: left; } /*[cite: 7] */
.bg-light { background-color: var(--bg-light); } /*[cite: 7] */

/* Premium Mesh Background */
.bg-mesh {
    background-color: var(--bg-white);
    background-image: 
        radial-gradient(at 0% 0%, rgba(209, 105, 79, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(51, 51, 51, 0.04) 0px, transparent 50%);
}

/* ==========================================================================
   Navigation (Glassmorphism Sticky Header)
   ========================================================================== */
.site-header { 
    padding: 20px 0; 
    border-bottom: 1px solid var(--border-color); 
    background: var(--header-bg); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    position: sticky; 
    top: 0; 
    z-index: 999;
} /*[cite: 7] */
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; } /*[cite: 7] */
.main-nav ul { list-style: none; display: flex; gap: 32px; } /*[cite: 7] */

/* Navigation Links */
.main-nav a { 
    text-decoration: none; 
    color: var(--primary-color); 
    font-weight: 600; 
    transition: color var(--transition-speed); 
    font-size: 0.95rem; 
    position: relative;
    padding-bottom: 4px;
} /*[cite: 7] */
.main-nav a:hover { color: var(--accent-color); } /*[cite: 7] */

/* Active ScrollSpy State */
.main-nav a.active { 
    color: var(--accent-color) !important; 
} /*[cite: 7] */
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
} /*[cite: 7] */

.logo img { transition: transform var(--transition-speed); display: block; } /*[cite: 7] */
.logo:hover img { transform: scale(1.02); } /*[cite: 7] */

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
} /*[cite: 7] */
.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
} /*[cite: 7] */

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn { 
    display: inline-flex; justify-content: center; align-items: center;
    padding: 14px 32px; 
    border-radius: var(--btn-radius); 
    text-decoration: none; font-weight: 700; cursor: pointer; text-align: center; 
    transition: all var(--transition-speed) ease;
    font-size: 0.95rem; letter-spacing: 0.5px;
} /*[cite: 7] */
.btn-primary { background: var(--accent-color); color: #ffffff; border: 2px solid var(--accent-color); box-shadow: 0 4px 15px rgba(209, 105, 79, 0.2); } /*[cite: 7] */
.btn-primary:hover { background: #b05741; border-color: #b05741; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(209, 105, 79, 0.3); } /*[cite: 7] */
.btn-outline { border: 2px solid var(--primary-color); color: var(--primary-color); background: transparent; } /*[cite: 7] */
.btn-outline:hover { background: var(--primary-color); color: #ffffff; transform: translateY(-2px); } /*[cite: 7] */
.btn-block { display: flex; width: 100%; } /*[cite: 7] */

.badge { display: inline-block; background: rgba(209, 105, 79, 0.1); color: var(--accent-color); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 800; margin-bottom: 20px; letter-spacing: 1px; border: 1px solid rgba(209, 105, 79, 0.2);} /*[cite: 7] */
.step-badge { font-weight: 800; background-color: var(--primary-color); color: #fff; font-size: 0.75rem; padding: 6px 12px; border-radius: var(--btn-radius); margin-bottom: 20px; display: inline-block; letter-spacing: 1.5px; } /*[cite: 7] */
.step-badge.step-badge-accent { background-color: var(--accent-color); } /*[cite: 7] */

/* ==========================================================================
   Typography & Layout Blocks
   ========================================================================== */
h1, h2, h3, h4, h5, h6 { color: var(--primary-color); line-height: 1.2; font-weight: 800; font-family: var(--heading-font); } /*[cite: 7] */
.hero { padding: 120px 0 100px; } /*[cite: 7] */
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); margin-bottom: 24px; letter-spacing: -1.5px; } /*[cite: 7] */
.hero p { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--text-muted); max-width: 650px; margin: 0 auto 40px; } /*[cite: 7] */

.section-padding { padding: 100px 0; } /*[cite: 7] */
.section-header { margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; } /*[cite: 7] */
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 15px; letter-spacing: -1px; } /*[cite: 7] */
.section-header h6 { color: var(--accent-color); font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; } /*[cite: 7] */
.section-header p { font-size: 1.15rem; color: var(--text-muted); } /*[cite: 7] */

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-bar { padding: 40px 0; border-bottom: 1px solid var(--border-color); background: var(--bg-white); } /*[cite: 7] */
.trust-title { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 20px; text-transform: uppercase; } /*[cite: 7] */
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; opacity: 0.6; filter: grayscale(100%); transition: all var(--transition-speed); } /*[cite: 7] */
.trust-logos:hover { opacity: 0.8; } /*[cite: 7] */
.logo-placeholder { font-size: 1.25rem; font-weight: 800; color: var(--text-color); display: flex; align-items: center; gap: 8px;} /*[cite: 7] */

/* ==========================================================================
   Grids & Cards
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 40px; } /*[cite: 7] */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 30px; } /*[cite: 7] */
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 30px; } /*[cite: 7] */

.pricing-flex-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; } /*[cite: 7] */

/* Global Card Styling */
.content-card, .pricing-card, .testimonial-card {
    background: var(--bg-white);
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
} /*[cite: 7] */
.content-card:hover, .pricing-card:hover, .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
} /*[cite: 7] */

/* Specific Card Adjustments */
.content-card { padding: 40px 30px; } /*[cite: 7] */
.content-card h4 { font-size: 1.3rem; margin-bottom: 15px; } /*[cite: 7] */
.content-card p { color: var(--text-muted); } /*[cite: 7] */

/* Flexible Pricing Cards */
.pricing-card { 
    padding: 40px 25px; 
    text-align: left; 
    flex: 1 1 240px; 
    max-width: 350px; 
    position: relative; 
    overflow: hidden; 
} /*[cite: 7] */
.pricing-card.popular-plan { border: 2px solid var(--primary-color); } /*[cite: 7] */
.pricing-card h3 { font-size: 2rem; margin-bottom: 10px; } /*[cite: 7] */
.pricing-card > p { color: var(--text-muted); min-height: 50px; font-size: 0.95rem; } /*[cite: 7] */
.pricing-card .price { font-size: 3.5rem; font-weight: 800; margin: 30px 0; color: var(--primary-color); display: flex; align-items: flex-start; line-height: 1;} /*[cite: 7] */
.pricing-card .price sup { font-size: 1.5rem; margin-top: 8px; margin-right: 4px; } /*[cite: 7] */
.pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-weight: 500; align-self: flex-end; margin-bottom: 8px; margin-left: 4px; } /*[cite: 7] */
.features { list-style: none; margin-bottom: 40px; } /*[cite: 7] */
.features li { padding: 16px 0; border-bottom: 1px solid var(--border-color); color: var(--text-color); display: flex; align-items: center; font-size: 0.95rem;} /*[cite: 7] */

/* ==========================================================================
   The Ultimate / Enterprise Plan
   ========================================================================== */
.pricing-card.ultimate-plan {
    flex: 1 1 100%;
    max-width: 100%; 
    border: 2px solid var(--primary-color);
    background: var(--bg-light); 
    margin-top: 20px;
} /*[cite: 7] */

@media (min-width: 992px) {
    .pricing-card.ultimate-plan {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 50px 60px;
        gap: 40px;
    } /*[cite: 7] */
    .ultimate-info {
        flex: 1;
        max-width: 300px;
    } /*[cite: 7] */
    .pricing-card.ultimate-plan .features {
        flex: 1;
        margin-bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 30px;
    } /*[cite: 7] */
    .pricing-card.ultimate-plan .features li {
        border-bottom: none;
        padding: 8px 0;
    } /*[cite: 7] */
    .ultimate-action {
        flex: 0 0 250px;
        text-align: center;
    } /*[cite: 7] */
    .pricing-card.ultimate-plan .price {
        justify-content: center;
        margin: 0 0 20px 0;
    } /*[cite: 7] */
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card { 
    padding: 40px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
} 
.testimonial-card p { 
    font-size: 1.1rem; 
    margin-bottom: 30px; 
    color: var(--text-color); 
    font-style: italic; 
    line-height: 1.8;
} 
.testimonial-profile { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-top: auto; 
    border-top: 1px solid var(--border-color); 
    padding-top: 20px;
} 
.testimonial-profile img { 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    object-fit: cover; 
} 
.testimonial-author { 
    font-weight: 800; 
    color: var(--primary-color); 
    font-size: 1.1rem; 
} 
.testimonial-role { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
} 
.testimonial-stat { 
    margin-top: 15px; 
    font-weight: 800; 
    color: var(--accent-color); 
    font-size: 1rem; 
    letter-spacing: 0.5px;
}


/* ==========================================================================
   FAQ Details
   ========================================================================== */
.faq-list { max-width: 800px; margin: 0 auto; text-align: left; background: var(--bg-white); padding: 20px 40px; border-radius: var(--card-radius); box-shadow: var(--card-shadow); border: 1px solid var(--border-color);} /*[cite: 7] */
.faq-item { border-bottom: 1px solid var(--border-color); padding: 24px 0; } /*[cite: 7] */
.faq-item:last-child { border-bottom: none; } /*[cite: 7] */
.faq-item summary { font-size: 1.15rem; font-weight: 700; cursor: pointer; color: var(--primary-color); list-style: none; outline: none; position: relative; padding-right: 40px; transition: color var(--transition-speed);} /*[cite: 7] */
.faq-item summary:hover { color: var(--accent-color); } /*[cite: 7] */
.faq-item summary::-webkit-details-marker { display: none; } /*[cite: 7] */
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.8rem; color: var(--accent-color); font-weight: 400; transition: transform var(--transition-speed); } /*[cite: 7] */
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); } /*[cite: 7] */
.faq-content { padding-top: 15px; color: var(--text-muted); animation: fadeIn 0.4s ease; font-size: 1.05rem; } /*[cite: 7] */
.faq-content p { margin-bottom: 10px; } /*[cite: 7] */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
} /*[cite: 7] */

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; will-change: opacity, transform; } /*[cite: 7] */
.fade-up.visible { opacity: 1; transform: translateY(0); } /*[cite: 7] */
.grid-2 > *:nth-child(1), .grid-3 > *:nth-child(1), .grid-4 > *:nth-child(1) { transition-delay: 0.1s; } /*[cite: 7] */
.grid-2 > *:nth-child(2), .grid-3 > *:nth-child(2), .grid-4 > *:nth-child(2) { transition-delay: 0.2s; } /*[cite: 7] */
.grid-3 > *:nth-child(3), .grid-4 > *:nth-child(3) { transition-delay: 0.3s; } /*[cite: 7] */
.grid-4 > *:nth-child(4) { transition-delay: 0.4s; } /*[cite: 7] */

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid var(--border-color); padding: 80px 0 30px; background: var(--bg-white); } /*[cite: 7] */
.footer-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 40px; margin-bottom: 60px; text-align: center; } /*[cite: 7] */
.footer-column h4 { margin-bottom: 20px; font-size: 1.1rem; letter-spacing: 0.5px; } /*[cite: 7] */
.footer-column ul { list-style: none; } /*[cite: 7] */
.footer-column li { margin-bottom: 12px; } /*[cite: 7] */
.footer-column a { text-decoration: none; color: var(--text-muted); font-size: 0.95rem; transition: color var(--transition-speed); } /*[cite: 7] */
.footer-column a:hover { color: var(--accent-color); } /*[cite: 7] */
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--text-muted); border-top: 1px solid var(--border-color); padding-top: 30px;} /*[cite: 7] */
.legal-links a { color: var(--text-muted); text-decoration: none; margin-left: 20px; transition: color var(--transition-speed); } /*[cite: 7] */
.legal-links a:hover { color: var(--primary-color); } /*[cite: 7] */

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); } /*[cite: 7] */
    .grid-3 { grid-template-columns: repeat(3, 1fr); } /*[cite: 7] */
    .footer-grid { grid-template-columns: repeat(3, 1fr); text-align: center; }  /*[cite: 7] */
    .trust-logos { gap: 60px; } /*[cite: 7] */
}
@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); } /*[cite: 7] */
}
@media (max-width: 767px) {
    /* Header & Mobile Menu Fixes */
    .nav-wrapper { flex-direction: row; } /*[cite: 7] */
    .mobile-menu-toggle { display: block; } /*[cite: 7] */
    
    .main-nav, .nav-actions {
        display: none;
        width: 100%;
        text-align: center;
        padding-top: 15px;
    } /*[cite: 7] */
    .main-nav ul { flex-direction: column; gap: 20px; justify-content: center; } /*[cite: 7] */
    .nav-actions { padding-bottom: 15px; border-top: 1px solid var(--border-color); margin-top: 20px; padding-top: 25px; } /*[cite: 7] */
    
    .site-header.nav-open .main-nav,
    .site-header.nav-open .nav-actions { display: block; } /*[cite: 7] */
    
    .site-header.nav-open .mobile-menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); } /*[cite: 7] */
    .site-header.nav-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; } /*[cite: 7] */
    .site-header.nav-open .mobile-menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); } /*[cite: 7] */

    .hero h1 { font-size: 2.5rem; } /*[cite: 7] */
    .button-group .btn { display: block; margin: 0 0 15px 0 !important; width: 100%; } /*[cite: 7] */
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; } /*[cite: 7] */
    .legal-links a { margin: 0 10px; } /*[cite: 7] */
    
    .pricing-flex-grid { flex-direction: column; align-items: stretch; gap: 20px; } /*[cite: 7] */
    .pricing-card { 
        max-width: 100%; 
        padding: 40px 25px; 
        flex: 1 1 auto;
    } /*[cite: 7] */
    .pricing-card .price { font-size: 3rem; } /*[cite: 7] */
    
    /* Ultimate Plan Mobile Adjustments */
    .pricing-card.ultimate-plan { margin-top: 0px; } /*[cite: 7] */
    .pricing-card.ultimate-plan .features { margin-bottom: 30px; } /*[cite: 7] */
}