/* 
   DrivenCertify Core Styling System
   Domain: drivencertify.com
   Color Palette & Visuals based on reference designs
   100% Fully Responsive Layout System
*/

:root {
    --primary-blue: #0d6efd;
    --primary-hover: #0b5ed7;
    --primary-light: #eef2ff;
    --secondary-blue: #2563eb;
    --dark-navy: #06162f;
    --navy-light: #0b2246;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --success-green: #10b981;
    --success-bg: #ecfdf5;
    --warning-yellow: #f59e0b;
    --warning-bg: #fffbeb;
    --danger-red: #ef4444;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(13, 110, 253, 0.08);
    --shadow-lg: 0 10px 25px rgba(6, 22, 47, 0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
}

/* Container */
.container-custom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Navbar */
.navbar-dv {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo-img {
    height: 44px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.site-logo-img:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
}



.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none !important;
}

.nav-link-dv {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-link-dv:hover, .nav-link-dv.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Dropdown Menu */
.dropdown-wrap {
    position: relative;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    min-width: 190px;
    padding: 8px 0;
    list-style: none !important;
    z-index: 2000;
}

.dropdown-wrap:hover .dropdown-menu-custom {
    display: block;
}

.dropdown-menu-custom li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 18px;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.dropdown-menu-custom li a:hover {
    background: var(--primary-light);
    color: var(--primary-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-dv-primary {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.btn-dv-primary:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.35);
}

.btn-dv-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-dv-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: var(--primary-light);
}

.currency-select, .lang-select {
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Toggle & Mobile Drawer Overlay */
.mobile-toggle-btn {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    color: var(--dark-navy);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(6, 22, 47, 0.6) !important;
    z-index: 9998 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-nav-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 9999 !important;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-close-btn {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close-btn:hover {
    background: #e2e8f0;
    color: var(--danger-red);
}

.mobile-menu-links {
    list-style: none !important;
    padding: 10px 0;
    margin: 0;
    overflow-y: auto;
    flex: 1;
}

.mobile-menu-links li {
    list-style: none !important;
}

.mobile-menu-links li a {
    display: block;
    padding: 14px 22px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
}

.mobile-menu-links li a:hover {
    background: var(--primary-light);
    color: var(--primary-blue);
}

/* Stepper Component */
.stepper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto 30px auto;
    position: relative;
    overflow: hidden;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    background: var(--bg-light);
    padding: 0 10px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.step-item.active .step-number {
    background: var(--primary-blue);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

.step-item.completed .step-number {
    background: var(--success-green);
    color: #ffffff;
}

.step-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.step-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.stepper-line {
    position: absolute;
    top: 38px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    padding: 50px 0 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-light);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-heading {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.hero-heading span.highlight {
    color: var(--primary-blue);
    display: block;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-form-box {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.12);
    border: 1px solid rgba(13, 110, 253, 0.15);
    display: flex;
    gap: 10px;
    max-width: 550px;
    width: 100%;
}

.hero-input {
    flex: 1;
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    outline: none;
    min-width: 0;
    transition: border 0.2s ease;
}

.hero-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.hero-no-vin {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Visual Box */
.hero-visual-container {
    position: relative;
    max-width: 100%;
}

.car-hero-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    border-radius: 12px;
}

.preview-badge-card {
    position: absolute;
    top: -10px;
    right: 0;
    background: #ffffff;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(6, 22, 47, 0.15);
    border: 1px solid var(--border-light);
    width: 240px;
    z-index: 10;
}

.risk-circle-gauge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid var(--success-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--dark-navy);
}

/* Trust Bar */
.trust-bar-section {
    background: #ffffff;
    padding: 22px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-navy);
}

.trust-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-blue);
}

/* What's Included Grid */
.included-section {
    padding: 70px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-sub {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark-navy);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.inc-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.inc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
    background: #ffffff;
}

.inc-icon {
    width: 46px;
    height: 46px;
    background: var(--primary-light);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    font-size: 20px;
}

.inc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-navy);
}

/* Interactive Dashboard Report Preview Section */
.report-preview-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.dashboard-preview-window {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 500px;
    width: 100%;
}

.preview-sidebar {
    background: #f8fafc;
    border-right: 1px solid var(--border-color);
    padding: 16px 10px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    margin-bottom: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sidebar-item:hover, .sidebar-item.active {
    background: var(--primary-blue);
    color: #ffffff;
}

.preview-content-body {
    padding: 24px;
    overflow-x: hidden;
}

.report-header-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.veh-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-navy);
}

.veh-vin-tag {
    font-size: 13px;
    color: var(--text-muted);
    font-family: monospace;
}

.risk-circle-large {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid var(--success-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.risk-circle-large .num {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark-navy);
}

.risk-circle-large .txt {
    font-size: 9px;
    font-weight: 700;
    color: var(--success-green);
    text-transform: uppercase;
}

/* Mileage Chart SVG */
.mileage-chart-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 20px;
    overflow-x: auto;
}

/* Testimonials */
.testimonials-section {
    padding: 70px 0;
    background: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--dark-navy);
}

.testi-badge {
    font-size: 12px;
    color: var(--success-green);
    font-weight: 600;
}

.stars-rating {
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 13px;
}

/* How it works */
.how-it-works-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hiw-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.hiw-step-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-blue);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hiw-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

/* Pricing Section */
.pricing-section {
    padding: 70px 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 6px;
}

.plan-price {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none !important;
    margin-bottom: 24px;
    flex: 1;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    list-style: none !important;
}

.check-icon {
    color: var(--success-green);
    font-weight: bold;
}

/* Footer styling */
.footer-dv {
    background-color: var(--dark-navy);
    color: #94a3b8;
    padding: 60px 0 30px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-col-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    list-style: none !important;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: #ffffff;
}

.newsletter-box {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-input {
    background: #0f294a;
    border: 1px solid #1e3a60;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-size: 13px;
    outline: none;
    flex: 1;
    min-width: 0;
}

.newsletter-input::placeholder {
    color: #64748b;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-icons-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-badge {
    background: #ffffff;
    color: var(--dark-navy);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 11px;
}

/* Forms & Cards helper */
.card-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* Alert Boxes */
.alert-dv-info {
    background-color: var(--primary-light);
    border: 1px solid rgba(13, 110, 253, 0.2);
    color: var(--dark-navy);
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
}

/* Tab Switcher */
.tab-switcher {
    display: flex;
    background: #f1f5f9;
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-muted);
}

.tab-btn.active {
    background: #ffffff;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (DESKTOP, LAPTOP, TABLET, MOBILE)
   ========================================================================== */

@media (max-width: 1200px) {
    .included-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-form-box {
        margin: 0 auto;
    }
    .hero-visual-container {
        margin-top: 20px;
    }
    .car-hero-img {
        margin: 0 auto;
    }
    .dashboard-preview-window {
        grid-template-columns: 1fr;
    }
    .preview-sidebar {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 8px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 12px;
    }
    .sidebar-item {
        margin-bottom: 0;
        padding: 8px 16px;
    }
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 992px) {
    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonial-grid, .hiw-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 32px;
    }
    .hero-form-box {
        flex-direction: column;
    }
    .stepper-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .stepper-line {
        display: none !important;
    }
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .site-logo-img {
        height: 46px;
        max-width: 210px;
    }
    .footer-logo-img {
        height: 44px;
        max-width: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    .preview-badge-card {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 26px;
    }
    .included-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 24px;
    }
    .nav-right {
        gap: 6px;
    }
    .currency-select, .lang-select {
        font-size: 12px;
        padding: 4px 6px;
    }
}

/* Double Marquee Reviews Section */
.testimonials-section {
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.marquee-track-left {
    animation: marqueeScrollLeft 120s linear infinite;
}

.marquee-track-right {
    animation: marqueeScrollRight 120s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.testi-card-clean {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px 20px;
    width: 330px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testi-card-clean:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
    background: #ffffff;
}

.testi-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.testi-reviewer-info {
    display: flex;
    flex-direction: column;
}

.testi-reviewer-name {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--dark-navy);
}

.testi-reviewer-meta {
    font-size: 11.5px;
    color: #64748b;
}

.testi-verified-badge {
    font-size: 10.5px;
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    border: 1px solid #86efac;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.testi-stars {
    color: #f59e0b;
    font-size: 12.5px;
    margin-bottom: 8px;
}

/* Light SaaS Pricing Blueprint Styling (Matched to Image) */
.pricing-light-wrap {
    position: relative;
}

.pricing-card-saas {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 40%);
    border-radius: 20px;
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.pricing-card-saas:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.pricing-card-saas.popular-card {
    border: 2px solid #2563eb;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.14);
}

/* Corner Folded Ribbon for Popular Plan */
.corner-ribbon-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.corner-ribbon {
    position: absolute;
    top: 28px;
    right: -35px;
    transform: rotate(45deg);
    width: 160px;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 6px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Card Top & Icon */
.pricing-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-top-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #2563eb;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.pricing-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.star-accent {
    font-size: 16px;
    color: #f59e0b;
}

/* Delivery Time Badge */
.delivery-time-pill {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Price Block */
.pricing-price-wrap {
    text-align: center;
}

.pricing-main-amount {
    font-size: 44px;
    font-weight: 900;
    color: #1d4ed8;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.pricing-sub-amount {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
}

.pricing-hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 24px 0;
}

/* Features Bullet List */
.pricing-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-features-bullet {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.pricing-features-bullet li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
}

.bullet-dot {
    color: #2563eb;
    font-size: 18px;
    line-height: 1;
}

/* Buttons */
.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-pkg-solid {
    background: #1d4ed8;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(29, 78, 216, 0.3);
}

.btn-pkg-solid:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.4);
}

.btn-pkg-light {
    background: #eff6ff;
    color: #1d4ed8 !important;
    border: 1px solid #bfdbfe;
}

.btn-pkg-light:hover {
    background: #dbeafe;
    transform: translateY(-2px);
}

/* Trust Bar Light */
.pricing-trust-bar-light {
    padding: 24px 20px;
}

.trust-light-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
}

.trust-light-icon {
    font-size: 20px;
    color: #2563eb;
}

/* Responsive Enhancements for Mobile & Tablets */
@media (max-width: 991.98px) {
    .pricing-card-saas {
        padding: 28px 20px;
    }
    
    .pricing-main-amount {
        font-size: 38px;
    }
    
    .pricing-card-title {
        font-size: 20px;
    }
    
    .pricing-section {
        padding: 40px 0;
        overflow-x: hidden;
    }
}

@media (max-width: 767.98px) {
    .pricing-light-wrap {
        overflow-x: hidden;
    }
    
    .pricing-card-saas {
        padding: 24px 16px;
    }

    .pricing-main-amount {
        font-size: 36px;
    }

    .delivery-time-pill {
        font-size: 11.5px;
        padding: 4px 12px;
    }

    .trust-light-item {
        font-size: 12px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .corner-ribbon-wrap {
        width: 120px;
        height: 120px;
    }

    .corner-ribbon {
        top: 22px;
        right: -40px;
        width: 150px;
        font-size: 10px;
    }
    
    .marquee-wrapper {
        overflow: hidden;
    }
    
    .testi-card-clean {
        min-width: 280px;
        max-width: 280px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-main-amount {
        font-size: 32px;
    }

    .pricing-sub-amount {
        font-size: 12px;
    }

    .pricing-card-title {
        font-size: 18px;
    }

    .pricing-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* ==========================================================================
   CREATIVE THANK YOU & ORDER CONFIRMATION STYLES
   ========================================================================== */
.thankyou-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 44px 32px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.thankyou-hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2563eb, #10b981, #f59e0b);
}

.success-icon-pulse-wrap {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 38px;
    margin: 0 auto 24px auto !important;
}

.success-icon-pulse-wrap::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid #86efac;
    animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.order-pipeline-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    position: relative;
    margin: 40px auto !important;
    padding: 0 10px;
    max-width: 750px;
    width: 100%;
}

.order-pipeline-wrapper::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: #cbd5e1;
    z-index: 1;
}

.pipeline-step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.pipeline-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #cbd5e1;
    color: #64748b;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 10px auto;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pipeline-step-item.completed .pipeline-step-icon {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.pipeline-step-item.active .pipeline-step-icon {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    animation: stepGlow 1.8s infinite alternate;
}

@keyframes stepGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    100% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
}

.pipeline-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.pipeline-step-subtitle {
    font-size: 12px;
    color: #64748b;
}

.delivery-time-callout {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1.5px dashed #3b82f6;
    border-radius: 16px;
    padding: 24px;
    margin: 30px auto !important;
    max-width: 750px;
    width: 100%;
    text-align: left;
}

.delivery-badge-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 12.5px;
    white-space: nowrap;
}

.delivery-badge-pill,
.delivery-badge-pill * {
    color: #ffffff !important;
}

.order-summary-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
}

@media (max-width: 767.98px) {
    .stepper-wrapper {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 10px 0 !important;
        gap: 2px !important;
        margin-bottom: 20px !important;
        overflow: hidden;
    }

    .stepper-line {
        display: block !important;
        top: 24px !important;
        left: 20px !important;
        right: 20px !important;
        height: 2px !important;
    }

    .step-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 3px !important;
        padding: 0 2px !important;
    }

    .step-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }

    .step-title {
        font-size: 10.5px !important;
        line-height: 1.2 !important;
        white-space: nowrap;
    }

    .step-subtitle {
        display: none !important;
    }

    .thankyou-card {
        padding: 24px 14px !important;
        border-radius: 18px !important;
    }

    .thankyou-card h1 {
        font-size: 22px !important;
    }

    .badge-responsive {
        white-space: normal !important;
        word-break: break-word !important;
        max-width: 100% !important;
        text-align: center !important;
        font-size: 12px !important;
        padding: 6px 10px !important;
    }

    .order-pipeline-wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        margin: 25px auto !important;
        padding-left: 15px !important;
        max-width: 320px !important;
    }

    .order-pipeline-wrapper::before {
        top: 20px !important;
        bottom: 20px !important;
        left: 35px !important;
        width: 3px !important;
        height: auto !important;
        right: auto !important;
    }

    .pipeline-step-item {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .pipeline-step-icon {
        margin: 0 !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 15px !important;
        flex-shrink: 0 !important;
    }

    .delivery-time-callout {
        padding: 16px 14px !important;
    }

    .delivery-badge-pill {
        white-space: normal !important;
        word-break: break-word !important;
        max-width: 100% !important;
        font-size: 11.5px !important;
        padding: 6px 10px !important;
        line-height: 1.3 !important;
        color: #ffffff !important;
    }

    .delivery-badge-pill * {
        color: #ffffff !important;
    }

    .delivery-icon-box {
        font-size: 22px !important;
    }

    .thankyou-actions {
        flex-direction: column !important;
        width: 100% !important;
    }

    .thankyou-actions .btn-dv-primary,
    .thankyou-actions .btn-dv-outline {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .order-summary-box {
        padding: 16px 14px !important;
    }

    .order-summary-box table tr {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .order-summary-box table tr td {
        font-size: 13px !important;
        word-break: break-word !important;
    }

    /* Responsive Button Styling Fix for Mobile Screens */
    .btn-dv-primary,
    .btn-dv-outline,
    .btn-primary,
    button[type="submit"] {
        white-space: normal !important;
        text-align: center !important;
        justify-content: center !important;
        max-width: 100% !important;
        word-break: break-word !important;
        line-height: 1.35 !important;
        font-size: 15px !important;
        padding: 12px 16px !important;
    }
}


/* DrivenCertify live chat */
#dc-chat{position:fixed;right:22px;bottom:22px;z-index:9999;font-family:Inter,Arial,sans-serif}#dc-chat-toggle{width:62px;height:62px;border-radius:50%;border:0;background:#0d6efd;color:#fff;font-size:24px;box-shadow:0 12px 30px rgba(13,110,253,.35);position:relative}#dc-chat-badge{display:none;position:absolute;right:7px;top:7px;width:12px;height:12px;background:#ef4444;border-radius:50%;border:2px solid #fff}#dc-chat-panel{display:none;width:360px;max-width:calc(100vw - 24px);height:520px;max-height:calc(100vh - 100px);background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 20px 60px rgba(15,23,42,.22);position:absolute;right:0;bottom:78px;border:1px solid #e2e8f0}.dc-chat-head{background:#06162f;color:#fff;padding:16px;display:flex;justify-content:space-between;align-items:center}.dc-chat-head small{display:block;color:#93c5fd;font-size:12px;margin-top:3px}#dc-chat-close{background:transparent;border:0;color:#fff;font-size:28px;line-height:1}.dc-empty{text-align:center;color:#64748b;padding:40px 20px;font-size:14px}#dc-chat-messages{height:382px;overflow:auto;background:#f8fafc;padding:14px}.dc-msg{display:flex;margin-bottom:10px}.dc-msg.me{justify-content:flex-end}.dc-msg>div{max-width:78%;padding:10px 12px;border-radius:16px;background:#fff;border:1px solid #e2e8f0;font-size:14px;word-break:break-word}.dc-msg.me>div{background:#0d6efd;color:#fff;border-color:#0d6efd}.dc-msg small{display:block;font-size:10px;opacity:.75;margin-top:4px}#dc-chat-form{display:flex;gap:8px;padding:12px;border-top:1px solid #e2e8f0;background:#fff}#dc-chat-input{flex:1;border:1px solid #cbd5e1;border-radius:999px;padding:10px 14px;outline:none}#dc-chat-form button,#dc-voice-btn{border:0;background:#0d6efd;color:#fff;border-radius:999px;width:42px;height:42px}#dc-voice-btn{background:#0f172a}#dc-recorder{position:absolute;left:12px;right:12px;bottom:70px;background:#fff7ed;border:1px solid #fdba74;border-radius:12px;padding:10px;align-items:center;justify-content:space-between;font-size:13px}#dc-stop-rec{border:0;background:#ea580c;color:#fff;border-radius:8px;padding:7px 10px}@media(max-width:575px){#dc-chat{right:12px;bottom:12px}#dc-chat-panel{position:fixed;left:10px;right:10px;bottom:84px;width:auto;height:70vh;max-height:none}#dc-chat-messages{height:calc(70vh - 138px)}}
