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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-gray {
    background: #f8fafc;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
}

.logo-circle {
    width: 36px;
    height: 36px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #64748b;
    font-size: 15px;
}

.nav a:hover,
.nav a.active {
    color: #2563eb;
}

.header-contact {
    font-size: 15px;
    color: #64748b;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: #fff;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: #fbbf24;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #bfdbfe;
}

.hero-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Calculator */
.calc-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    color: #1e293b;
    box-shadow: 0 0px 0px rgba(0,0,0,0.3);
}

.calc-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.calc-item {
    margin-bottom: 25px;
}

.calc-item label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.calc-value {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.calc-item input[type="range"] {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #e2e8f0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.calc-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
}

.calc-item input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    border: none;
}

.calc-range {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 5px;
}

.calc-result {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-payment {
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-white {
    background: #fff;
    color: #2563eb;
}

.btn-white:hover {
    background: #f1f5f9;
}

.btn-secondary {
    background: #fff;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature p {
    color: #64748b;
    font-size: 15px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.step-num {
    width: 45px;
    height: 45px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: #64748b;
}

/* Stats */
.stats {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: #fff;
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}

.stat-num {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 16px;
    color: #bfdbfe;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    color: #bfdbfe;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 50px 0 20px;
}

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

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer ul li {
    font-size: 14px;
}

.footer a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Form Page */
.form-page {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    min-height: 100vh;
    padding: 40px 0 80px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 25px;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.form-header p {
    color: #64748b;
    font-size: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 30px 0;
}

.form-section-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.summary {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.summary h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.summary-row span:last-child {
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    font-size: 13px;
    color: #64748b;
}

.checkbox-group input {
    margin-top: 3px;
}

.checkbox-group a {
    color: #2563eb;
}

.form-notice {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #64748b;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.info-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.info-box-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.info-box-text {
    font-size: 13px;
}

/* IVR Card */
.ivr-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 25px;
}

.ivr-icon {
    width: 90px;
    height: 90px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
    position: relative;
}

.ivr-icon.success {
    background: #dcfce7;
}

.pulse {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.ivr-card h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.ivr-card p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
}

.instruction {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 2px solid #fbbf24;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.instruction p {
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 10px;
}

.instruction small {
    color: #64748b;
    font-size: 13px;
}

.progress {
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.progress-dot.active {
    background: #2563eb;
}

.progress-dot.done {
    background: #22c55e;
}

/* Offers Page */
.offers-page {
    padding: 40px 0 80px;
    background: #f9fafb;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #64748b;
}

.filter {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
}

.filter-item label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.filter-slider {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-slider input {
    flex: 1;
}

.filter-value {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    min-width: 120px;
    text-align: right;
}

.filter select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-card.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.stat-card.purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.stat-card.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.stat-card-num {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card-text {
    font-size: 13px;
    opacity: 0.95;
}

.offers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.offer {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.offer.best {
    border: 2px solid #fbbf24;
}

.offer-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.offer-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 250px 1fr 220px;
    gap: 35px;
}

.offer-company {
    display: flex;
    gap: 15px;
}

.company-icon {
    width: 70px;
    height: 70px;
    background: #dbeafe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    flex-shrink: 0;
}

.company-icon.green {
    background: #dcfce7;
}

.company-icon.purple {
    background: #f3e8ff;
}

.company-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.rating {
    font-size: 13px;
    color: #64748b;
}

.rating-stars {
    color: #fbbf24;
    margin-right: 5px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.detail-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
}

.detail-value.green {
    color: #22c55e;
}

.offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #dbeafe;
    color: #1e40af;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.tag.green {
    background: #dcfce7;
    color: #166534;
}

.tag.purple {
    background: #f3e8ff;
    color: #6b21a8;
}

.offer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-box {
    background: linear-gradient(135deg, #4f46e5 0%, #2563eb 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 14px;
    text-align: center;
}

.cta-box h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 17px;
    color: #bfdbfe;
    margin-bottom: 25px;
}

.btn-secondary:hover,
.btn-white:hover {
    transform: translateY(-1px);
}

.btn-secondary:active,
.btn-white:active,
.btn-primary:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner,
    .features,
    .steps,
    .stats-grid,
    .footer-grid,
    .form-row,
    .info-boxes,
    .filter,
    .stats-bar,
    .offer-body {
        grid-template-columns: 1fr;
    }

    .nav,
    .header-contact {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .calc-box,
    .form-card,
    .ivr-card {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .hero-inner,
    .features,
    .steps,
    .stats-grid,
    .footer-grid,
    .form-row,
    .info-boxes,
    .filter,
    .stats-bar,
    .offer-body {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .company-icon {
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 20px;
    }

    .offer-company {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 60px;
    }

    .section {
        padding: 60px 0;
    }
}

/* Custom additions */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.hero-media {
    width: 100%;
    max-width: 360px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15,37,74,0.25);
}

.hero-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.offers-section {
    padding: 80px 0;
    background: #f8fafc;
}

.offers-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
}

.offers-header p {
    color: #64748b;
    max-width: 560px;
}

.company-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.offer-links a {
    color: #2563eb;
}

@media (max-width: 768px) {
    .hero-media {
        max-width: none;
    }
}

