/* CSS Reset for Hero Content */
.hero-content *,
.hero-content *::before,
.hero-content *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Modern Hero Section and Form Styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Animated Background */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 5%;
    animation: float2 25s ease-in-out infinite;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 15%;
    animation: float3 18s ease-in-out infinite;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 10%;
    animation: float4 22s ease-in-out infinite;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 15%;
    left: 50%;
    animation: float5 15s ease-in-out infinite;
}

.shape-6 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    left: 30%;
    animation: float6 28s ease-in-out infinite;
}

/* Animated Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 12s linear infinite;
}

.particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 25%; left: 80%; animation-delay: 2s; }
.particle-3 { top: 45%; left: 15%; animation-delay: 4s; }
.particle-4 { top: 65%; left: 85%; animation-delay: 6s; }
.particle-5 { top: 85%; left: 25%; animation-delay: 8s; }
.particle-6 { top: 15%; left: 70%; animation-delay: 10s; }
.particle-7 { top: 55%; left: 60%; animation-delay: 1s; }
.particle-8 { top: 75%; left: 40%; animation-delay: 3s; }

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orb-float 30s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #667eea, transparent);
    top: 10%;
    left: 20%;
    animation: orb1 35s ease-in-out infinite;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #764ba2, transparent);
    top: 60%;
    right: 20%;
    animation: orb2 40s ease-in-out infinite;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #f093fb, transparent);
    bottom: 15%;
    left: 60%;
    animation: orb3 38s ease-in-out infinite;
}

/* Wave Effect */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50% 50% 0 0;
    animation: wave-move 8s ease-in-out infinite;
}

.wave-1 {
    animation: wave1 8s ease-in-out infinite;
    opacity: 0.3;
}

.wave-2 {
    animation: wave2 10s ease-in-out infinite;
    opacity: 0.2;
}

.wave-3 {
    animation: wave3 12s ease-in-out infinite;
    opacity: 0.1;
}

/* Floating Animations */
@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-30px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(-15px) rotate(240deg) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-25px) translateX(15px); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-35px) rotate(90deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    75% { transform: translateY(-40px) rotate(270deg); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-25px) rotate(120deg); }
    66% { transform: translateY(-10px) rotate(240deg); }
}

/* Particle Animations */
@keyframes particle-float {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Orb Animations */
@keyframes orb1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    33% { transform: translateY(-40px) translateX(30px) scale(1.1); }
    66% { transform: translateY(-20px) translateX(-20px) scale(0.9); }
}

@keyframes orb2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-50px) translateX(-40px) scale(1.2); }
}

@keyframes orb3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    25% { transform: translateY(-30px) translateX(25px) scale(1.1); }
    75% { transform: translateY(-45px) translateX(-30px) scale(0.8); }
}

/* Wave Animations */
@keyframes wave1 {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes wave2 {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

@keyframes wave3 {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

.form-container-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: white;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    gap: 0;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 6px 0;
    padding: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 8px 0;
    padding: 0;
    opacity: 0.9;
    line-height: 1.3;
}

.hero-description {
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 12px 0;
    padding: 0;
    opacity: 0.8;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.hero-features li {
    display: flex;
    align-items: center;
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    padding: 0;
    line-height: 1.1;
}

.hero-features li i {
    margin-right: 6px;
    color: #fbbf24;
    font-size: 16px;
    width: 18px;
    flex-shrink: 0;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 32px;
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 20px 20px 0 0;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.form-icon i {
    font-size: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-title {
    margin-bottom: 12px;
}

.title-main {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #718096;
}

.form-description {
    color: #718096;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.form-hint {
    display: block;
    font-size: 11px;
    color: #a0aec0;
    margin-top: 4px;
    font-style: italic;
}

.input-wrapper,
.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon,
.select-arrow {
    position: absolute;
    right: 12px;
    color: #a0aec0;
    font-size: 14px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-icon {
    right: 12px;
}

.select-arrow {
    right: 12px;
    transition: transform 0.3s ease;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-select::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.form-input:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-input:focus + .input-icon,
.form-select:focus + .select-arrow {
    color: #667eea;
}

.form-select:focus + .select-arrow {
    transform: rotate(180deg);
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.form-input:hover,
.form-select:hover {
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading i {
    animation: spin 1s linear infinite;
}

.form-footer {
    text-align: center;
}

.form-disclaimer {
    font-size: 12px;
    color: #718096;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-disclaimer i {
    color: #48bb78;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .form-container-wrapper {
        padding: 30px;
        max-width: 1200px;
    }
    
    .hero-content {
        max-width: 500px;
        padding-right: 30px;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        margin-bottom: 14px;
    }
    
    .hero-description {
        margin-bottom: 18px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .form-container-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        margin-bottom: 16px;
    }
    
    .form-container {
        max-width: 550px;
    }
    
    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
        justify-items: center;
    }
    
    /* Keep form labels left-aligned on tablet */
    .form-label {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .form-container-wrapper {
        padding: 20px;
    }
    
    .hero-content {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .form-container {
        max-width: 500px;
        padding: 24px;
        margin: 0 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .title-main {
        font-size: 24px;
    }
    
    .title-sub {
        font-size: 15px;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
    }
    
    .form-icon i {
        font-size: 20px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .hero-features li {
        font-size: 14px;
    }
    
    /* Ensure form labels are left-aligned on mobile */
    .form-label {
        text-align: left;
        justify-content: flex-start;
    }
    
    .form-hint {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .form-container-wrapper {
        padding: 15px;
    }
    
    .hero-content {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .form-container {
        padding: 20px;
        margin: 0 15px;
        border-radius: 16px;
    }
    
    .form-container::before {
        height: 2px;
    }
    
    .title-main {
        font-size: 22px;
    }
    
    .title-sub {
        font-size: 14px;
    }
    
    .form-description {
        font-size: 13px;
    }
    
    .form-input,
    .form-select {
        padding: 10px 36px 10px 14px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .hero-features {
        gap: 8px;
    }
    
    .hero-features li {
        font-size: 13px;
    }
    
    /* Ensure form labels are left-aligned on small mobile */
    .form-label {
        text-align: left;
        justify-content: flex-start;
    }
    
    .form-hint {
        text-align: left;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* Form element animations */
.form-group {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }

.form-header {
    animation: slideInUp 0.8s ease forwards;
}

.submit-btn {
    animation: fadeInUp 0.9s ease forwards;
}

.hero-content {
    animation: slideInLeft 0.8s ease forwards;
}

/* Focus and validation states */
.form-group.focused .form-label {
    color: #667eea;
}

.form-group.error .form-input,
.form-group.error .form-select {
    border-color: #e53e3e;
    animation: shake 0.5s ease;
}

.form-group.error .form-label {
    color: #e53e3e;
}

.form-group.success .form-input,
.form-group.success .form-select {
    border-color: #48bb78;
}

.form-group.success .form-label {
    color: #48bb78;
}

/* Featured Products - Modern, minimal styling */
.featured-products {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
}

.featured-products .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-products .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Update: Product Card border shadow */
.featured-products .product-card {
	border: 1px solid #e5e7eb;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.featured-products .product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(239, 68, 68, 0.12);
}

.featured-products .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.featured-products .deal-tag {
    background: linear-gradient(135deg, #f6ad55, #ed8936);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 14px rgba(237, 137, 54, 0.35);
}

.featured-products .category-tag {
    background: rgba(102, 126, 234, 0.12);
    color: #4c51bf;
    font-weight: 600;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(102,126,234,0.25);
}

.featured-products .product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f7fafc;
    overflow: hidden;
}

.featured-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.featured-products .product-card:hover .product-image img {
    transform: scale(1.04);
}

.featured-products .product-details {
    padding: 16px;
}

.featured-products .product-model {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.35;
    margin: 0 0 12px 0;
}

/* Update: CTA to red theme */
.featured-products .product-cta {
	background: #2e3488ff;
	box-shadow: 0 10px 18px rgba(239, 68, 68, 0.25);
}

.featured-products .product-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 24px rgba(239, 68, 68, 0.32);
}

/* Responsive refinements */
@media (max-width: 992px) {
    .featured-products {
        padding: 50px 0;
    }
    .featured-products .products-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: 40px 0;
    }
    .featured-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .featured-products .product-model {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .featured-products .product-cta {
        padding: 9px 12px;
        border-radius: 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .featured-products .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 300px;
    }
    .featured-products .product-cta {
        width: 100%;
        justify-content: center;
    }
}

/* More Products Section */
.more-products {
    padding: 80px 0;
    background: #fafafa;
}

.more-products .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.more-products .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin: 40px auto 0;
}

.more-products .product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.more-products .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(239, 68, 68, 0.12);
}

.more-products .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.more-products .deal-tag {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.more-products .category-tag {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.more-products .product-image {
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.more-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.more-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

.more-products .product-details {
    padding: 20px;
    text-align: center;
}

.more-products .product-model {
    font-size: 18px;
    color: #1f2937;
    margin: 0 0 16px 0;
    font-weight: 600;
    line-height: 1.4;
}

.more-products .product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2e3488ff;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 18px rgba(239, 68, 68, 0.25);
}

.more-products .product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(239, 68, 68, 0.32);
}

.more-products .product-cta i {
    font-size: 16px;
}

/* Responsive adjustments for more-products */
@media (max-width: 992px) {
    .more-products .products-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .more-products {
        padding: 60px 0;
    }
    
    .more-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .more-products .product-details {
        padding: 16px;
    }
    
    .more-products .product-model {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .more-products .product-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .more-products .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 300px;
    }
    
    .more-products .product-image {
        height: 180px;
    }
}

/* Benefits cards (below hero) */
.benefits {
	padding: 20px 0 10px;
	background: transparent;
}

.benefits-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.benefit-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 0 8px 18px rgba(0,0,0,0.06), 0 0 0 1px rgba(15,23,42,0.06);
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.benefit-icon i {
	font-size: 18px;
	color: #ef4444;
	background: rgba(239,68,68,0.08);
	padding: 10px;
	border-radius: 12px;
}

.benefit-text h3 {
	margin: 0 0 4px 0;
	font-size: 20px;
	font-weight: 800;
	color: #2e3488ff;
}

.benefit-text p {
	margin: 0;
	font-size: 15px;
	color: #4b5563;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.benefits-container { grid-template-columns: 1fr; }
}
