

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0f172a;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-white { color: #fff; }
.text-light { color: #cbd5e1; }
.section-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 48px;
}
.mb-large { margin-bottom: 64px; }

.hero-section {
    padding: 96px 0 72px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f8fafc 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.hero-text h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 16px 0;
    color: #0f172a;
}
.hero-subtitle {
    font-size: 15px;
    color: #475569;
    margin-bottom: 24px;
    max-width: 480px;
    line-height: 1.6;
}
.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #f0f9ff;
    color: #0284c7;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid #bae6fd;
}
.dot-blue {
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(14,165,233,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(14,165,233,0); }
}

.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.hero-feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hero-feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: #e2e8f0;
}
.hf-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bg-gray-icon { background: #f1f5f9; }
.bg-blue-icon { background: #e0f2fe; }
.bg-purple-icon { background: #f3e8ff; }
.bg-orange-icon { background: #fef3c7; }
.hf-text { display: flex; flex-direction: column; }
.hf-text strong {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1px;
    letter-spacing: -0.02em;
}
.hf-text span { font-size: 11px; color: #64748b; }

.hero-buttons-new {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}
.btn-primary-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #0284c7;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 16px rgba(2,132,199,0.25);
    letter-spacing: -0.01em;
}
.btn-primary-new:hover {
    background: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2,132,199,0.35);
}
.btn-outline-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #fff;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-outline-new:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.hero-social-proof-new {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    margin-top: 4px;
}
.badge-icon-img {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}
.avatars-new {
    display: flex;
    align-items: center;
}
.avatars-new img, .avatar-count {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}
.avatars-new img:first-child { margin-left: 0; }
.avatar-count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background: #0284c7;
    color: #fff;
}
.stars-text { display: flex; flex-direction: column; gap: 2px; }
.stars-text .stars { color: #eab308; font-size: 12px; letter-spacing: 2px; }
.stars-text span { font-size: 12px; font-weight: 500; color: #64748b; }
.bg-blue { background: #0284c7; }

.hero-image {
    position: relative;
    border-radius: 20px;
    min-height: 520px;
}
.main-hero-img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
}
.floating-badge-top {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 10;
    border-left: 3px solid #0284c7;
    animation: float 3.5s ease-in-out infinite;
}
.floating-badge-bottom {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 10;
    border-left: 3px solid #f97316;
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.plan-icon-blue, .plan-icon-orange {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.plan-icon-blue { background: #e0f2fe; }
.plan-icon-orange { background: #fef3c7; }
.badge-text { display: flex; flex-direction: column; }
.badge-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
    letter-spacing: -0.02em;
}
.badge-text span { font-size: 12px; color: #64748b; }

.protect-grid-section {
    padding: 96px 0;
    background: #f8fafc;
}

.protect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.protect-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
}
.protect-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 282px;
    overflow: hidden;
}
.protect-card .card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.protect-card:hover .card-bg { transform: scale(1.06); }
.card-icon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.card-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.bg-purple { color: #8b5cf6; }
.bg-orange { color: #f97316; }
.bg-green { color: #10b981; }
.bg-pink { color: #ec4899; }
.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    z-index: 2;
}
.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    margin: 0;
}
.card-content p {
    font-size: 14px;
    color: #525252;
    margin: 0;
    line-height: 22.75px;
}
.card-content a {
    font-size: 12px;
    font-weight: 500;
    color: #1d4ed8;
    display: inline-flex;
    text-decoration: none;
    margin-top: 5px;
}

.detailed-products { padding: 40px 0; }
.product-row {
    padding: 80px 0;
}
.product-row:nth-child(even) { background: #f8fafc; }
.product-row:last-child { border-bottom: none; }
.row-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
.reverse-row .prod-text { order: 2; }
.reverse-row .prod-image { order: 1; }

.prod-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.prod-badge svg { width: 14px; height: 14px; }
.prod-badge.badge-blue { background: #e0f2fe; color: #0284c7; }
.prod-badge.badge-purple { background: #f3e8ff; color: #9333ea; }
.prod-badge.badge-green { background: #dcfce7; color: #16a34a; }
.prod-badge.badge-orange { background: #fef3c7; color: #ea580c; }
.prod-badge.badge-pink { background: #fce7f3; color: #db2777; }

.prod-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}
.prod-desc {
    font-size: 16px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 480px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    transition: all 0.3s;
}
.product-row:nth-child(even) .pricing-card {
    background: #fff;
    border-color: #cbd5e1;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}
.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}
.price-from { font-size: 14px; color: #64748b; font-weight: 500; }
.price-amount {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    line-height: 1;
}
.price-period { font-size: 14px; color: #64748b; }

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.feat-icon {
    margin-top: 2px;
    color: #0284c7;
    background: #e0f2fe;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feat-icon svg { width: 12px; height: 12px; stroke-width: 3; }
.feat-text { display: flex; flex-direction: column; gap: 2px; }
.feat-text strong { font-size: 14px; font-weight: 700; color: #0f172a; letter-spacing: -0.02em; }
.feat-text span { font-size: 12px; color: #64748b; line-height: 1.4; }

.card-actions { display: flex; gap: 12px; }
.btn-buy {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0284c7;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.btn-buy:hover {
    background: #0369a1;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(2,132,199,0.3);
}
.btn-outline-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-outline-action:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}
.prod-image {
    width: 100%;
    height: 100%;
    display: flex;
}
.prod-image img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.03);
}

.stats-section {
    padding: 72px 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}
.stats-section h2 {
    margin-bottom: 48px;
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.stat-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.15);
}
.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    padding: 12px;
    border-radius: 14px;
}
.stat-num {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 14px;
    color: #7dd3fc;
    font-weight: 500;
}

.steps-section {
    padding: 96px 0;
    background: #fff;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}
.step-item {
    position: relative;
    padding: 0 24px;
    text-align: center;
}
.step-item::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #f1f5f9;
    z-index: 1;
}
.step-item-last::after { display: none; }
.step-icon {
    width: 64px;
    height: 64px;
    background: #0284c7;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(2,132,199,0.25);
}
.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.step-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}
.steps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0284c7;
    font-size: 15px;
    transition: gap 0.25s;
    letter-spacing: -0.01em;
}
.steps-link:hover { gap: 12px; }

.testimonials-section {
    padding: 96px 0;
    background: #f8fafc;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}
.test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.test-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0369a1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}
.test-info strong { display: block; font-size: 15px; color: #0f172a; }
.test-info span { font-size: 13px; color: #64748b; }
.test-stars { color: #eab308; letter-spacing: 2px; }
.testimonial-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    font-style: italic;
}

.cta-section {
    padding: 88px 0;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #93c5fd;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.cta-badge svg { stroke: #93c5fd; }
.cta-section h2 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.cta-section p { font-size: 17px; margin-bottom: 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; }
.btn-primary, .btn-outline, .btn-white, .btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
    border: none;
}
.btn-white {
    background: #fff;
    color: #0284c7;
}
.btn-white:hover {
    box-shadow: 0 4px 14px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

.footer {
    background: #0f172a;
    padding: 72px 0 32px;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img {
    height: 36px;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
    color: #64748b;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.contact-row svg { flex-shrink: 0; margin-top: 2px; }
.contact-row span {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
}
.footer-links h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.footer-links a {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    color: #94a3b8;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-newsletter h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}
.footer-newsletter p {
    font-size: 13px;
    margin-bottom: 16px;
    color: #64748b;
    line-height: 1.5;
}
.newsletter-input { display: flex; }
.newsletter-input input {
    flex: 1;
    padding: 11px 14px;
    border-radius: 10px 0 0 10px;
    border: 1px solid #334155;
    border-right: none;
    background: #1e293b;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-input input:focus { border-color: #0284c7; }
.newsletter-input input::placeholder { color: #64748b; }
.newsletter-input button {
    padding: 0 20px;
    border: none;
    background: #0284c7;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: background 0.25s;
}
.newsletter-input button:hover { background: #0369a1; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 13px;
    color: #475569;
}

@media (max-width: 1200px) {
    .nav-container { padding: 0 32px; }
}
@media (max-width: 1024px) {
    .hero-grid,
    .row-inner,
    .reverse-row .row-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-text { text-align: center; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-buttons-new { justify-content: center; }
    .hero-social-proof-new { justify-content: center; }
    .protect-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero-text h1 { font-size: 40px; letter-spacing: -1px; }
    .hero-features-grid { grid-template-columns: 1fr; }
    .protect-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-item::after { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .prod-title { font-size: 32px; }
}
@media (max-width: 600px) {
    .nav-links { display: none; }
    .nav-container { height: 60px; }
    .hero-section { padding-top: 80px; }
    .hero-text h1 { font-size: 32px; }
    .section-title { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 32px; }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (max-width: 768px) {
    .product-row { padding: 40px 0 !important; }
    .row-inner { flex-direction: column !important; padding: 0 20px !important; gap: 28px !important; }
    .prod-text, .prod-image { width: 100% !important; flex: none !important; }
    .prod-image img { width: 100%; height: 260px; object-fit: cover; border-radius: 16px; }
    .prod-title { font-size: 26px !important; }
    .pricing-card { padding: 20px !important; }
    .price-amount { font-size: 28px !important; }
    .card-actions { flex-direction: column; gap: 10px; }
    .btn-buy, .btn-outline-action { width: 100%; justify-content: center; text-align: center; }

    .product-row:nth-child(even) .row-inner { flex-direction: column !important; }
    .product-row:nth-child(odd) .row-inner { flex-direction: column !important; }
}

@media (max-width: 480px) {
    .prod-title { font-size: 22px !important; }
    .price-amount { font-size: 24px !important; }
}

@media (max-width: 768px) {

    .product-row {
        padding: 0 !important;
        margin-bottom: 0 !important;
        border-bottom: 8px solid #f8fafc;
    }

    .row-inner {
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        align-items: stretch !important;
    }

    .prod-image {
        width: 100% !important;
        order: -1 !important;
        height: 240px !important;
        overflow: hidden;
        position: relative;
    }

    .prod-image img {
        width: 100% !important;
        height: 240px !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        display: block;
    }

    .prod-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, transparent 60%);
    }

    .prod-text {
        width: 100% !important;
        padding: 20px 20px 28px !important;
        order: 1 !important;
    }

    .prod-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .prod-title {
        font-size: 24px !important;
        line-height: 1.2;
        margin-bottom: 8px;
        font-weight: 800;
    }

    .prod-desc {
        font-size: 13px !important;
        line-height: 1.6;
        color: #475569;
        margin-bottom: 16px;
    }

    .pricing-card {
        border-radius: 12px !important;
        padding: 16px !important;
        border: 1px solid #e2e8f0;
        background: #f8fafc;
    }

    .price-display {
        margin-bottom: 12px;
    }

    .price-amount {
        font-size: 28px !important;
        font-weight: 800;
    }

    .price-from, .price-period {
        font-size: 13px !important;
    }

    .feature-list {
        margin-bottom: 16px;
    }

    .feature-list li {
        padding: 8px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 13px;
    }

    .card-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .btn-buy, .btn-outline-action {
        width: 100% !important;
        justify-content: center !important;
        font-size: 13px !important;
        padding: 11px 8px !important;
        border-radius: 8px !important;
        min-height: 44px !important;
    }

    .products-page-hero {
        padding: 80px 24px 32px !important;
        text-align: center;
    }

    .products-page-hero h1 {
        font-size: 28px !important;
        font-weight: 800;
    }
}

@media (max-width: 390px) {
    .prod-title { font-size: 22px !important; }
    .price-amount { font-size: 24px !important; }
}

@media (max-width: 768px) {
    .container,
    [class$="-container"],
    [class*="hero-container"],
    [class*="page-container"],
    [class*="section-container"],
    .checkout-grid,
    .quote-main {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}
.quote-info { padding: 12px 0 8px; }
.quote-info strong { display: block; font-size: 18px; color: #1e3a5f; font-weight: 700; margin-bottom: 4px; }
.quote-info span { font-size: 14px; color: #64748b; }
