main {
    background-color: #F0F6FF;
}

/* =========================================
   1. Product Hero Section
   ========================================= */

.product-hero {
    background: var(--color-blue);
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 188, 91, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.product-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 59, 166, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: hsl(0 0% 100% / .1);
    border: 1px solid rgba(0, 188, 91, 0.3);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: var(--fs-14);
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.product-hero-badge svg {
    flex-shrink: 0;
}

.product-hero-title {
    font-size: var(--fs-42);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.25;
    max-width: 800px;
    margin: 0 auto 24px;
}

.product-hero-title span {
    background: linear-gradient(90deg, #00BC5B, #4CAF50);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-hero-desc {
    font-size: var(--fs-16);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 36px;
}

.product-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: var(--fs-16);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* =========================================
   2. Product Features Section
   ========================================= */

.product-features-section {
    padding: var(--section-padding) 0;
}

.product-features-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
    margin-bottom: 36px;
}

.product-features-header h2 {
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--color-black);
    padding: 8px 0;
}

.product-features-header p {
    font-size: var(--fs-16);
    color: var(--color-grey);
    line-height: 1.6;
}

/* Feature Block */
.feature-block {
    background: #FAFBFF;
    border: 1px solid #E8EDF5;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    transition: border-color 0.3s ease;
}

.feature-block:hover {
    border-color: var(--color-blue-half);
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue);
    background: hsl(217 89% 40% / .1) !important;
    flex-shrink: 0;
}

.feature-number svg {
    width: 18px !important;
    height: 18px !important;
}

.feature-number.green {
    background: var(--color-green);
}

.feature-block-title {
    font-size: var(--fs-24);
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.feature-block-desc {
    font-size: var(--fs-15);
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Checklist Grid */
.feature-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--fs-14);
    color: #444;
    line-height: 1.5;
}

.checklist-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: var(--color-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-block-note {
    font-size: var(--fs-14);
    color: #888;
    padding: 16px;
    background: var(--color-light-blue);
    border-radius: 8px;
}


.why-choose-header h2 {
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}

.why-choose-header p {
    font-size: var(--fs-16);
    color: #666;
    line-height: 1.6;
    max-width: 700px;
}

.why-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-checklist .checklist-item {
    font-size: var(--fs-16);
    color: var(--color-black);
    line-height: 1.5;
}


/* =========================================
   3. Sidebar
   ========================================= */

.product-sidebar {
    position: sticky;
    top: 86px;
}

/* Demo Request Form Card */
.sidebar-form-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-blue);
    margin-bottom: 24px;
}

.sidebar-form-header {
    padding: 24px 24px 0 24px;
    color: var(--color-black);
}

.sidebar-form-header h3 {
    font-size: var(--fs-24);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--color-blue);
}

.sidebar-form-header p {
    font-size: var(--fs-14);
    color: var(--color-black);
    margin: 0;
    line-height: 1.5;
}

.sidebar-form-body {
    padding: 24px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E0E5EE;
    border-radius: 8px;
    font-size: var(--fs-14);
    font-family: var(--font-family-primary);
    color: var(--color-black);
    background: #FAFBFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(14, 59, 166, 0.1);
    background: var(--color-white);
}

.form-group input::placeholder {
    color: #aaa;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: #00a34f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 188, 91, 0.3);
}

/* Contact Card */
.sidebar-contact-card {
    background: linear-gradient(90deg, #0E3BA6 0%, #00BC5B 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #E8EDF5;
}

.sidebar-contact-card .contact-label {
    font-size: var(--fs-14);
    font-weight: normal;
    color: var(--color-white);
    text-transform: capitalize;
    margin-bottom: 12px;
}

.sidebar-contact-card .contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-24);
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.flag-icon img {
    display: block;
    margin: auto;
}

/* =========================================
   4. Key Benefits Section
   ========================================= */

.key-benefits-header h2 {
    font-size: var(--fs-32);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}

.key-benefits-header p {
    font-size: var(--fs-16);
    color: #666;
    line-height: 1.6;
    max-width: 700px;
}

.benefit-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    border: 1px solid #E8EDF5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-blue);
    transition: background 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(14, 59, 166, 0.12);
}

.benefit-card h4 {
    font-size: var(--fs-16);
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    line-height: 1.4;
}

/* =========================================
   5. Product CTA Section
   ========================================= */

.product-cta-banner {
    background: url('../img/blue-bg.png') no-repeat center center;
    background-size: cover;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 188, 91, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.product-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(14, 59, 166, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.product-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-cta-title {
    font-size: var(--fs-36);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.3;
}

.product-cta-desc {
    font-size: var(--fs-16);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.product-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================
   6. Trust Badges Section
   ========================================= */

.trust-badges-section {
    padding: 40px 0;
    background-color: var(--color-white);
}

.trust-badges-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #F7F8FA;
    border-radius: 10px;
    border: 1px solid #E8EDF5;
}

.trust-badge img {
    height: 32px;
    width: auto;
}

.trust-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #555;
}