/* ============================================
   24ОСАГО-Онлайн — Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --primary-light: #e8f0fe;
    --secondary: #ff6b35;
    --secondary-dark: #e55a2b;
    --accent: #00c853;
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --danger: #dc3545;
    --warning: #ffc107;
    --success: #28a745;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Montserrat', 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.header-phone i {
    color: var(--primary);
    font-size: 1rem;
}

.header-phone:hover {
    color: var(--primary);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-600);
    line-height: 1;
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 120px 0 70px;
    background:
        radial-gradient(circle at 18% 30%, rgba(26, 115, 232, 0.09) 0%, transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(255, 107, 53, 0.07) 0%, transparent 30%),
        linear-gradient(180deg, #eef7ff 0%, #f5fbff 72%, #f7fbff 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(26, 115, 232, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(0, 200, 83, 0.03) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 18px;
    line-height: 1.7;
    max-width: 520px;
}

.hero-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 560px;
    margin-bottom: 28px;
    padding: 14px 16px;
    background: rgba(26, 115, 232, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.14);
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-note i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 36px;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 4px;
    font-weight: 500;
}

.hero-cta {
    margin-bottom: 24px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.trust-item i {
    color: var(--success);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 380px;
    position: relative;
}

.hero-card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.hero-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.hero-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero-card-features {
    text-align: left;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
    color: var(--gray-700);
}

.feature-check:last-child {
    border-bottom: none;
}

.feature-check i {
    color: var(--success);
    font-size: 0.85rem;
    width: 20px;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.2rem;
}

.badge-1 {
    top: 10%;
    right: -10%;
    color: var(--secondary);
}

.badge-1 i {
    color: var(--secondary);
}

.badge-2 {
    bottom: 15%;
    left: -5%;
    color: var(--accent);
    animation-delay: 1.5s;
}

.badge-2 i {
    color: var(--accent);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Волна между первым экраном и калькулятором убрана: секции переходят друг в друга плавным фоном. */
.hero-wave { display: none; }

/* ============================================
   PRICE EXPLAIN
   ============================================ */
.price-explain {
    padding: 76px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.12), transparent 28%),
        linear-gradient(135deg, #eef5ff 0%, #f8fbff 55%, #ffffff 100%);
}

.price-explain-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 38px;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 24px 70px rgba(37, 99, 235, 0.14);
}

.price-explain-card::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 230px;
    height: 230px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
    pointer-events: none;
}

.price-explain-main {
    position: relative;
    z-index: 1;
}

.price-explain-badge {
    background: rgba(37, 99, 235, 0.10);
    color: var(--primary-dark);
}

.price-explain-title {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.15;
    margin: 14px 0 18px;
    letter-spacing: -0.02em;
}

.price-explain-lead {
    color: var(--gray-800);
    font-size: 1.18rem;
    line-height: 1.72;
    font-weight: 600;
    margin-bottom: 18px;
}

.price-explain-note {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

.price-explain-factors {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.price-explain-factor {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.03));
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 18px;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1rem;
}

.price-explain-factor i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.advantage-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.advantage-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.advantage-card:hover .advantage-icon {
    background: var(--primary);
}

.advantage-card:hover .advantage-icon i {
    color: var(--white);
}

.advantage-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   CALCULATOR
   ============================================ */
.calculator {
    padding: 100px 0;
    background: var(--white);
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.calculator-notice i {
    font-size: 1.2rem;
    color: var(--primary);
}

.calculator-iframe-container {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   COVERAGE
   ============================================ */
.coverage {
    padding: 100px 0;
    background: var(--white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.coverage-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.coverage-card-header {
    padding: 30px 24px 20px;
    text-align: center;
}

.coverage-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.coverage-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.coverage-icon--damage {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
}

.coverage-icon--health {
    background: linear-gradient(135deg, #1a73e8, #4a9af5);
}

.coverage-icon--total {
    background: linear-gradient(135deg, #00c853, #4caf50);
}

.coverage-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
}

.coverage-amount {
    text-align: center;
    padding: 20px;
    background: var(--gray-100);
}

.amount-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.amount-label {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.coverage-list {
    padding: 20px 24px;
}

.coverage-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.coverage-list li i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Coverage Note */
.coverage-note {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #fff8e1;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning);
    margin-bottom: 50px;
}

.coverage-note-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-note-icon i {
    color: var(--gray-900);
    font-size: 1rem;
}

.coverage-note p {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-top: 4px;
}

/* Coverage Table */
.coverage-table-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.coverage-table-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    padding: 24px 30px 0;
}

.coverage-table {
    width: 100%;
    border-collapse: collapse;
}

.coverage-table thead {
    background: var(--gray-100);
}

.coverage-table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coverage-table td {
    padding: 16px 24px;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-top: 1px solid var(--gray-200);
}

.coverage-table td i {
    margin-right: 8px;
    color: var(--gray-500);
}

/* ============================================
   ACCIDENT GUIDE
   ============================================ */
.accident {
    padding: 100px 0;
    background: var(--gray-100);
}

.accident-steps {
    max-width: 900px;
    margin: 0 auto 60px;
}

.accident-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-300);
}

.accident-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 8px;
}

.step-content ul {
    margin-top: 8px;
}

.step-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.step-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.accident-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tips-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.tips-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-card h3 i {
    color: var(--warning);
    font-size: 1.2rem;
}

.tips-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.tips-card ul li::before {
    content: '→';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.tips-card--urgent {
    border-left: 4px solid var(--danger);
}

.tips-card--urgent h3 i {
    color: var(--danger);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

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

.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-card-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gray-400);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.step-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-card-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.step-card:hover .step-card-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.step-card:hover .step-card-icon i {
    color: var(--white);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   VERIFY SECTION
   ============================================ */
.verify-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    text-align: center;
}

.verify-content {
    max-width: 700px;
    margin: 0 auto;
}

.verify-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.verify-icon i {
    font-size: 2rem;
    color: var(--white);
}

.verify-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.verify-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.verify-link {
    color: var(--secondary);
    font-weight: 600;
}

.verify-link:hover {
    color: var(--white);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--gray-100);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--gray-500);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1557b0 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
    border-color: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo .logo-main {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo .logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.footer-contacts i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.footer-contacts a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }

    .price-explain-card {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .header-phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 100px 0 56px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-note {
        font-size: 0.85rem;
        padding: 12px 14px;
    }

    .price-explain {
        padding: 50px 0;
    }

    .price-explain-card {
        padding: 28px 20px;
        gap: 26px;
        border-radius: 24px;
    }

    .price-explain-title {
        font-size: 1.65rem;
    }

    .price-explain-lead {
        font-size: 1.02rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .accident-tips {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .calculator-iframe-container iframe {
        height: 800px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-cta {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .accident-step {
        flex-direction: column;
        gap: 12px;
    }

    .coverage-note {
        flex-direction: column;
        gap: 12px;
    }

    .coverage-table th,
    .coverage-table td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================

   FAQ FIX — увеличен max-height для длинных ответов

   ============================================ */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;

}



.faq-item.active .faq-answer {

    max-height: 1500px;

}



/* ============================================

   MODAL WINDOWS

   ============================================ */

.modal-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    z-index: 2000;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;

    padding: 20px;

}



.modal-overlay.active {

    opacity: 1;

    visibility: visible;

}



.modal-content {

    background: var(--white);

    border-radius: var(--radius-md);

    max-width: 750px;

    width: 100%;

    max-height: 80vh;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    transform: translateY(30px) scale(0.95);

    transition: transform 0.3s ease;

    box-shadow: var(--shadow-xl);

}



.modal-overlay.active .modal-content {

    transform: translateY(0) scale(1);

}



.modal-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 24px 30px;

    border-bottom: 1px solid var(--gray-200);

    flex-shrink: 0;

}



.modal-header h3 {

    font-family: var(--font-heading);

    font-size: 1.25rem;

    font-weight: 700;

    color: var(--gray-900);

}



.modal-close {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--gray-100);

    border: none;

    border-radius: 50%;

    cursor: pointer;

    font-size: 1.2rem;

    color: var(--gray-600);

    transition: var(--transition);

    flex-shrink: 0;

}



.modal-close:hover {

    background: var(--danger);

    color: var(--white);

}



.modal-body {

    padding: 30px;

    overflow-y: auto;

    flex: 1;

}



.modal-body h4 {

    font-size: 1rem;

    font-weight: 700;

    color: var(--gray-900);

    margin: 20px 0 8px;

}



.modal-body h4:first-child {

    margin-top: 0;

}



.modal-body p {

    font-size: 0.9rem;

    color: var(--gray-700);

    line-height: 1.7;

    margin-bottom: 12px;

}



.modal-body ol,

.modal-body ul {

    padding-left: 20px;

    margin-bottom: 12px;

}



.modal-body li {

    font-size: 0.9rem;

    color: var(--gray-700);

    line-height: 1.7;

    margin-bottom: 4px;

}



.modal-footer {

    padding: 16px 30px;

    border-top: 1px solid var(--gray-200);

    text-align: right;

    flex-shrink: 0;

}



.modal-footer .btn {

    padding: 10px 28px;

    font-size: 0.9rem;

}



/* ============================================

   CALCULATOR FLOATING BUTTON

   ============================================ */

.calc-float-btn {

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 60px;

    height: 60px;

    background: var(--secondary);

    color: var(--white);

    border: none;

    border-radius: 50%;

    cursor: pointer;

    font-size: 1.5rem;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 999;

    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);

    transition: var(--transition);

    animation: pulse-btn 2s ease-in-out infinite;

}



.calc-float-btn:hover {

    background: var(--secondary-dark);

    transform: scale(1.1);

    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);

}



@keyframes pulse-btn {

    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4); }

    50% { box-shadow: 0 4px 30px rgba(255, 107, 53, 0.7); }

}



/* Tooltip */

.calc-float-btn::before {

    content: 'Рассчитать ОСАГО';

    position: absolute;

    right: 70px;

    background: var(--gray-900);

    color: var(--white);

    padding: 8px 16px;

    border-radius: var(--radius-sm);

    font-size: 0.8rem;

    font-weight: 500;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

    pointer-events: none;

}



.calc-float-btn:hover::before {

    opacity: 1;

    visibility: visible;

}



.calc-float-btn::after {

    content: '';

    position: absolute;

    right: 58px;

    top: 50%;

    transform: translateY(-50%);

    border: 6px solid transparent;

    border-left-color: var(--gray-900);

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

    pointer-events: none;

}



.calc-float-btn:hover::after {

    opacity: 1;

    visibility: visible;

}



@media (max-width: 768px) {

    .calc-float-btn {

        bottom: 20px;

        right: 20px;

        width: 54px;

        height: 54px;

        font-size: 1.3rem;

    }



    .calc-float-btn::before {

        display: none;

    }



    .calc-float-btn::after {

        display: none;

    }



    .modal-content {

        max-height: 90vh;

    }



    .modal-body {

        padding: 20px;

    }

}



/* ---------- SEO guide block and article pages ---------- */
.guide-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.guide-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 260px;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(26, 115, 232, 0.10);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
    color: var(--gray-800);
}
.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(26, 115, 232, 0.15);
    border-color: rgba(26, 115, 232, 0.28);
}
.guide-card h3 { font-size: 1.25rem; color: var(--gray-900); margin: 0; }
.guide-card p { color: var(--gray-600); margin: 0; flex: 1; }
.guide-card span { color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.guide-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.guide-card--accent {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: #fff;
}
.guide-card--accent h3,
.guide-card--accent p,
.guide-card--accent span { color: #fff; }
.guide-card--accent .guide-icon { background: rgba(255,255,255,.16); color: #fff; }
.guide-note {
    margin-top: 28px;
    padding: 20px 24px;
    border-radius: 18px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #7c2d12;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.guide-note i { margin-top: 4px; color: #f97316; }
.guide-note p { margin: 0; }
.article-hero {
    padding: 128px 0 64px;
    background: radial-gradient(circle at top left, rgba(26,115,232,.18), transparent 35%), linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #fff;
}
.article-hero .breadcrumbs { margin-bottom: 22px; color: rgba(255,255,255,.72); font-size: .95rem; }
.article-hero .breadcrumbs a { color: #fff; font-weight: 600; }
.article-hero h1 { max-width: 900px; margin: 0 0 18px; font-family: var(--font-heading); font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.08; }
.article-hero p { max-width: 800px; margin: 0; font-size: 1.15rem; color: rgba(255,255,255,.86); }
.article-meta { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.article-meta span { padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.12); color: #fff; font-size: .92rem; }
.article-layout { padding: 58px 0 90px; background: #f8fafc; }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; align-items: start; }
.article-card-main, .article-side-card {
    background: #fff; border-radius: 24px; box-shadow: 0 18px 45px rgba(15,23,42,.08); border: 1px solid rgba(15,23,42,.06);
}
.article-card-main { padding: 42px; }
.article-card-main h2 { margin: 34px 0 14px; color: #0f172a; font-size: 1.75rem; line-height: 1.2; }
.article-card-main h2:first-child { margin-top: 0; }
.article-card-main h3 { margin: 26px 0 10px; color: #172554; font-size: 1.25rem; }
.article-card-main p, .article-card-main li { color: #334155; line-height: 1.75; }
.article-card-main p { margin: 0 0 16px; }
.article-card-main ul, .article-card-main ol { padding-left: 24px; margin: 0 0 18px; }
.article-card-main li { margin-bottom: 8px; }
.article-card-main a { color: var(--primary); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.info-box, .warning-box, .success-box {
    padding: 20px 22px; border-radius: 18px; margin: 24px 0; border: 1px solid;
}
.info-box { background: #eff6ff; border-color: #bfdbfe; color: #1e3a8a; }
.warning-box { background: #fff7ed; border-color: #fed7aa; color: #7c2d12; }
.success-box { background: #ecfdf5; border-color: #bbf7d0; color: #14532d; }
.article-table { width: 100%; border-collapse: collapse; margin: 24px 0; overflow: hidden; border-radius: 16px; }
.article-table th, .article-table td { padding: 15px 16px; border-bottom: 1px solid #e2e8f0; text-align: left; vertical-align: top; }
.article-table th { background: #eff6ff; color: #1e3a8a; font-weight: 800; }
.article-table tr:last-child td { border-bottom: 0; }
.article-side-card { padding: 24px; position: sticky; top: 92px; }
.article-side-card h3 { margin: 0 0 16px; color: #0f172a; }
.article-side-card ul { list-style: none; padding: 0; margin: 0; }
.article-side-card li + li { border-top: 1px solid #e2e8f0; }
.article-side-card a { display: block; padding: 12px 0; color: #334155; font-weight: 700; }
.article-side-card a:hover { color: var(--primary); }
.source-list { margin-top: 34px; padding-top: 24px; border-top: 1px solid #e2e8f0; }
.source-list h2 { font-size: 1.35rem; }
.source-list li { font-size: .95rem; color: #475569; }
.article-cta { margin-top: 34px; padding: 28px; border-radius: 22px; background: linear-gradient(135deg, #1a73e8, #1557b0); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.article-cta h2 { margin: 0 0 8px; color: #fff; }
.article-cta p { margin: 0; color: rgba(255,255,255,.88); }
.article-cta .btn { background: #fff; color: #1a73e8; border-color: #fff; flex: 0 0 auto; }
.directory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.directory-card { padding: 24px; border-radius: 20px; background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 12px 30px rgba(15,23,42,.06); }
.directory-card h3 { margin-top: 0; }
.directory-card p { margin-bottom: 14px; }
@media (max-width: 980px) {
    .guide-grid, .directory-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: 1fr; }
    .article-side-card { position: static; }
}
@media (max-width: 680px) {
    .guide-section { padding: 70px 0; }
    .guide-grid, .directory-grid { grid-template-columns: 1fr; }
    .guide-card { min-height: auto; }
    .article-hero { padding-top: 104px; }
    .article-card-main { padding: 26px 20px; }
    .article-cta { flex-direction: column; align-items: flex-start; }
    .article-table { display: block; overflow-x: auto; }
}


/* === OSAGO V3 CALCULATOR AND FAQ ENHANCEMENTS === */
.calculator-integrated {
    position: relative;
    padding: 78px 0 110px;
    margin-top: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(26, 115, 232, 0.08), transparent 34%),
        radial-gradient(circle at 86% 0%, rgba(255, 107, 53, 0.08), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #fbfdff 40%, #ffffff 100%);
    overflow: hidden;
}

.calculator-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.25fr);
    gap: 34px;
    align-items: stretch;
    padding: 28px;
    border: 1px solid rgba(26, 115, 232, 0.12);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
}

.calculator-copy {
    padding: 34px 20px 34px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    color: var(--gray-900);
    margin: 22px 0 18px;
}

.calculator-lead {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.calculator-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.calculator-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--gray-800);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.calculator-benefits i {
    color: var(--success);
}

.calculator-trust-note {
    display: flex;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(26, 115, 232, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.14);
    color: var(--gray-700);
}

.calculator-trust-note i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.calculator-trust-note p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.94rem;
}

.calculator-widget-card,
.article-calculator-card {
    background: var(--white);
    border-radius: 28px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
    overflow: hidden;
}

.article-calculator-card {
    margin: 26px 0 34px;
}

.widget-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border-bottom: 1px solid var(--gray-200);
}

.widget-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.widget-card-title > i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 12px 24px rgba(26, 115, 232, 0.22);
    flex-shrink: 0;
}

.widget-card-title strong,
.widget-card-title span {
    display: block;
}

.widget-card-title strong {
    color: var(--gray-900);
    font-size: 1rem;
}

.widget-card-title span {
    color: var(--gray-500);
    font-size: 0.82rem;
    margin-top: 3px;
}

.widget-card-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(0, 200, 83, 0.10);
    color: var(--success);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.widget-card-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(0, 200, 83, 0.10);
}

.widget-card-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px 18px;
    background: #fbfdff;
    border-bottom: 1px solid var(--gray-100);
}

.widget-card-steps span {
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-weight: 700;
    font-size: 0.78rem;
    text-align: center;
}

.widget-card-steps span.active {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.calculator-iframe-container--framed {
    border-radius: 0;
    box-shadow: none;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.calculator-iframe-container--framed iframe {
    display: block;
    background: transparent;
}

.widget-card-footer {
    padding: 14px 20px 18px;
    color: var(--gray-500);
    font-size: 0.82rem;
    line-height: 1.55;
    background: #fbfdff;
    border-top: 1px solid var(--gray-100);
}

.faq .section-subtitle {
    max-width: 760px;
    margin: 14px auto 0;
}

.faq-source-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 4px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 115, 232, 0.25);
}

.faq-source-link:hover {
    color: var(--primary-dark);
    border-bottom-color: currentColor;
}

@media (max-width: 1024px) {
    .calculator-shell {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .calculator-copy {
        padding: 22px 8px 6px;
    }
}

@media (max-width: 768px) {
   .calculator-integrated {
        padding: 70px 0;
    }

    .calculator-shell {
        border-radius: 24px;
        padding: 14px;
    }

    .calculator-widget-card,
    .article-calculator-card {
        border-radius: 22px;
    }

    .widget-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .widget-card-steps {
        grid-template-columns: 1fr;
    }

    .calculator-iframe-container--framed iframe {
        height: 800px !important;
    }
}

@media (max-width: 480px) {
    .calculator-benefits span {
        width: 100%;
        justify-content: center;
    }
}


/* === OSAGO V5: simplified calculator for stable mobile rendering === */
.calculator-integrated.calculator-simple {
    padding: 72px 0 96px;
    background:
        radial-gradient(circle at 14% 0%, rgba(26, 115, 232, 0.08), transparent 32%),
        radial-gradient(circle at 86% 4%, rgba(255, 107, 53, 0.07), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #fbfdff 26%, #ffffff 100%);
}

.calculator-simple .section-header {
    margin-bottom: 30px;
}

.calculator-simple .section-title {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-simple .section-subtitle {
    max-width: 720px;
}

.calculator-wrapper--simple {
    max-width: 920px;
    margin: 0 auto;
}

.calculator-notice--compact {
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    border: 1px solid rgba(26, 115, 232, 0.14);
    background: rgba(232, 240, 254, 0.78);
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.08);
}

.calculator-iframe-container--simple {
    border: 1px solid rgba(26, 115, 232, 0.14);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.calculator-iframe-container--simple iframe {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    background: #ffffff;
}

.article-calculator-simple {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    overflow: visible;
}

.article-calculator-simple .calculator-notice--compact {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .calculator-integrated.calculator-simple {
        padding: 54px 0 72px;
    }

    .calculator-simple .section-header {
        margin-bottom: 22px;
    }

    .calculator-simple .section-title {
        font-size: clamp(1.75rem, 8vw, 2.35rem);
    }

    .calculator-notice--compact {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        padding: 14px 16px;
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .calculator-notice--compact i {
        margin-top: 2px;
        flex-shrink: 0;
    }

    .calculator-iframe-container--simple {
        border-radius: 18px;
        box-shadow: 0 16px 42px rgba(15, 23, 42, 0.10);
    }

    .calculator-iframe-container--simple iframe {
        height: 720px !important;
    }
}

@media (max-width: 380px) {
    .calculator-notice--compact {
        padding: 12px 14px;
    }

    .calculator-iframe-container--simple {
        border-radius: 14px;
    }
}

/* === OSAGO V7: Polis.online calculator as a full-width background block === */
.calculator-integrated.calculator-alt {
    padding: 72px 0 96px;
    background:
        radial-gradient(circle at 12% 4%, rgba(26, 115, 232, 0.10), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(26, 115, 232, 0.08), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #fbfdff 36%, #ffffff 100%);
    overflow: hidden;
}

.section-header--calculator-alt {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
}

.alt-calculator-layout {
    position: relative;
    display: block;
    width: 100%;
    padding: 24px;
    border-radius: 34px;
    border: 1px solid rgba(26, 115, 232, 0.12);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    background:
        linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 42%, rgba(247, 251, 255, 0.66) 70%, rgba(247, 251, 255, 0.35) 100%),
        url('../images/osago-calculator-visual.webp') right center / cover no-repeat,
        #eef6ff;
}

.alt-calculator-main {
    position: relative;
    z-index: 2;
    min-width: 0;
    width: 100%;
}

.alt-widget-card,
.article-polis-card {
    border: 1px solid rgba(26, 115, 232, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.alt-widget-card {
    width: 100%;
    min-height: 100%;
    overflow: visible;
    backdrop-filter: blur(4px);
}

.alt-widget-card-top {
    border-radius: 30px 30px 0 0;
    padding: 18px 20px;
}

.polis-widget-wrap {
    width: 100%;
    min-height: 620px;
    padding: 14px;
    border-radius: 0 0 30px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
}

.polis-widget-wrap polis-online-widget-osago {
    display: block;
    width: 100%;
    max-width: none;
    min-height: 590px;
}

.polis-widget-wrap--article {
    border-radius: 24px;
    min-height: 650px;
}

.polis-widget-wrap--article polis-online-widget-osago {
    min-height: 620px;
}

.calc-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.calc-step-card {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 115, 232, 0.12);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.calc-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.calc-step-number {
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--primary-light);
}

.calc-step-head i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 12px 24px rgba(26, 115, 232, 0.22);
}

.calc-step-card h3 {
    margin: 0 0 10px;
    color: var(--gray-900);
    font-size: 1.1rem;
    font-weight: 800;
}

.calc-step-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.94rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .calculator-integrated.calculator-alt {
        padding: 54px 0 72px;
    }

    .alt-calculator-layout {
        padding: 14px;
        border-radius: 22px;
        background:
            linear-gradient(180deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 55%, rgba(247, 251, 255, 0.72) 100%),
            url('../images/osago-calculator-visual.webp') right top / cover no-repeat,
            #eef6ff;
    }

    .alt-widget-card,
    .article-polis-card {
        border-radius: 22px;
    }

    .alt-widget-card-top {
        border-radius: 22px 22px 0 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .polis-widget-wrap {
        min-height: 700px;
        padding: 10px;
        border-radius: 0 0 22px 22px;
    }

    .polis-widget-wrap polis-online-widget-osago {
        min-height: 680px;
    }

    .calc-steps-grid {
        grid-template-columns: 1fr;
    }

    .calc-step-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .alt-calculator-layout {
        padding: 8px;
    }

    .polis-widget-wrap {
        min-height: 760px;
        padding: 8px;
    }

    .polis-widget-wrap polis-online-widget-osago {
        min-height: 740px;
    }
}

/* === OSAGO V8: calculator hero like mockup + full-width expanded state === */
.calculator-integrated.calculator-alt {
    padding: 64px 0 86px;
}

.calculator-alt .container {
    max-width: 1240px;
}

.calculator-alt .section-header--calculator-alt {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin-bottom: 32px;
}

.alt-calculator-layout.alt-calculator-layout--background {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    min-height: 670px;
    padding: 32px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background:
        linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 35%, rgba(247, 251, 255, 0.58) 56%, rgba(247, 251, 255, 0.08) 76%, rgba(247, 251, 255, 0.02) 100%),
        url('../images/osago-calculator-visual.webp') right center / cover no-repeat,
        #eef6ff;
}

.alt-calculator-main {
    width: min(560px, 48%);
    max-width: 560px;
    position: relative;
    z-index: 2;
    transition: width 0.35s ease, max-width 0.35s ease;
}

.alt-widget-card,
.article-polis-card {
    border-radius: 0;
}

.alt-widget-card {
    width: 100%;
    max-width: 560px;
    overflow: visible;
    border: 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(5px);
    transition: max-width 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.alt-widget-card-top {
    border-radius: 0;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(26, 115, 232, 0.08);
}

.polis-widget-wrap {
    width: 100%;
    min-height: 168px;
    padding: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    overflow: visible;
}

.polis-widget-wrap polis-online-widget-osago,
.polis-widget-wrap > * {
    display: block;
    width: 100% !important;
    max-width: none !important;
    min-height: 160px;
}

.alt-calculator-layout .calc-steps-grid {
    position: relative;
    z-index: 2;
    width: min(760px, 74%);
    margin-top: 36px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.alt-calculator-layout .calc-step-card {
    padding: 20px 22px;
    min-height: 168px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(6px);
}

.alt-calculator-layout .calc-step-head {
    margin-bottom: 16px;
}

.alt-calculator-layout .calc-step-card h3 {
    font-size: 1rem;
}

.alt-calculator-layout .calc-step-card p {
    font-size: 0.88rem;
    line-height: 1.55;
}

/* When the external widget grows after the first calculation, give it the whole standard page width. */
.alt-calculator-layout.is-widget-expanded {
    min-height: auto;
    padding: 26px;
    background:
        linear-gradient(90deg, rgba(247, 251, 255, 0.99) 0%, rgba(247, 251, 255, 0.98) 64%, rgba(247, 251, 255, 0.78) 100%),
        url('../images/osago-calculator-visual.webp') right top / 56% auto no-repeat,
        #eef6ff;
}

.alt-calculator-layout.is-widget-expanded .alt-calculator-main {
    width: 100%;
    max-width: none;
}

.alt-calculator-layout.is-widget-expanded .alt-widget-card {
    width: 100%;
    max-width: none;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 18px 56px rgba(15, 23, 42, 0.10);
}

.alt-calculator-layout.is-widget-expanded .polis-widget-wrap {
    min-height: 720px;
}

.alt-calculator-layout.is-widget-expanded .polis-widget-wrap polis-online-widget-osago,
.alt-calculator-layout.is-widget-expanded .polis-widget-wrap > * {
    min-height: 700px;
}

.alt-calculator-layout.is-widget-expanded .calc-steps-grid {
    width: 100%;
}

@media (max-width: 1024px) {
    .alt-calculator-layout.alt-calculator-layout--background {
        min-height: 630px;
        padding: 24px;
        background:
            linear-gradient(90deg, rgba(247, 251, 255, 0.99) 0%, rgba(247, 251, 255, 0.94) 48%, rgba(247, 251, 255, 0.54) 74%, rgba(247, 251, 255, 0.14) 100%),
            url('../images/osago-calculator-visual.webp') 68% center / cover no-repeat,
            #eef6ff;
    }

    .alt-calculator-main {
        width: min(560px, 56%);
    }

    .alt-calculator-layout .calc-steps-grid {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .calculator-integrated.calculator-alt {
        padding: 48px 0 68px;
    }

    .calculator-alt .section-header--calculator-alt {
        margin-bottom: 24px;
    }

    .alt-calculator-layout.alt-calculator-layout--background {
        min-height: auto;
        padding: 14px;
        border-radius: 0;
        background:
            linear-gradient(180deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.95) 48%, rgba(247, 251, 255, 0.86) 100%),
            url('../images/osago-calculator-visual.webp') right top / auto 52% no-repeat,
            #eef6ff;
    }

    .alt-calculator-main,
    .alt-widget-card {
        width: 100%;
        max-width: none;
    }

    .alt-widget-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .polis-widget-wrap {
        min-height: 190px;
    }

    .polis-widget-wrap polis-online-widget-osago,
    .polis-widget-wrap > * {
        min-height: 180px;
    }

    .alt-calculator-layout .calc-steps-grid {
        grid-template-columns: 1fr;
        margin-top: 18px;
        width: 100%;
    }

    .alt-calculator-layout.is-widget-expanded .polis-widget-wrap {
        min-height: 760px;
    }

    .alt-calculator-layout.is-widget-expanded .polis-widget-wrap polis-online-widget-osago,
    .alt-calculator-layout.is-widget-expanded .polis-widget-wrap > * {
        min-height: 740px;
    }
}

@media (max-width: 480px) {
    .alt-calculator-layout.alt-calculator-layout--background {
        padding: 10px;
    }

    .alt-widget-card-top {
        padding: 14px;
    }

    .alt-calculator-layout .calc-step-card {
        padding: 18px;
    }

    .alt-calculator-layout.is-widget-expanded .polis-widget-wrap {
        min-height: 820px;
    }

    .alt-calculator-layout.is-widget-expanded .polis-widget-wrap polis-online-widget-osago,
    .alt-calculator-layout.is-widget-expanded .polis-widget-wrap > * {
        min-height: 800px;
    }
}

/* Fine-tune header position inside the visual calculator block */
.alt-calculator-layout .section-header--calculator-alt {
    width: min(760px, 70%);
    max-width: 760px;
    margin-left: 0;
    margin-right: auto;
    text-align: center;
}

@media (max-width: 768px) {
    .alt-calculator-layout .section-header--calculator-alt {
        width: 100%;
        max-width: none;
    }
}

/* === OSAGO V9: transparent calculator and steps over visual background === */
.alt-calculator-layout.alt-calculator-layout--background {
    background:
        linear-gradient(90deg, rgba(247, 251, 255, 0.96) 0%, rgba(247, 251, 255, 0.86) 34%, rgba(247, 251, 255, 0.44) 56%, rgba(247, 251, 255, 0.06) 78%, rgba(247, 251, 255, 0.02) 100%),
        url('../images/osago-calculator-visual.webp') right center / cover no-repeat,
        #eef6ff;
}

.alt-calculator-layout .alt-widget-card,
.alt-calculator-layout.is-widget-expanded .alt-widget-card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.alt-calculator-layout .widget-card-top,
.alt-calculator-layout .alt-widget-card-top,
.alt-calculator-layout .calc-step-head {
    display: none !important;
}

.alt-calculator-layout .polis-widget-wrap,
.alt-calculator-layout.is-widget-expanded .polis-widget-wrap {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.alt-calculator-layout .polis-widget-wrap polis-online-widget-osago,
.alt-calculator-layout .polis-widget-wrap > * {
    background: transparent !important;
    box-shadow: none !important;
}

/* Best-effort styling for the Polis.online widget when it renders in light DOM. */
.alt-calculator-layout .polis-widget-wrap polis-online-widget-osago *,
.alt-calculator-layout .polis-widget-wrap > *:not(input):not(select):not(textarea):not(button) {
    box-shadow: none !important;
}

/* Не делаем все внутренние div/section виджета прозрачными: это ломает белую подложку
   выпадающих подсказок адреса Polis.online. Прозрачность оставлена только на внешней карточке. */

.alt-calculator-layout .polis-widget-wrap input,
.alt-calculator-layout .polis-widget-wrap select,
.alt-calculator-layout .polis-widget-wrap textarea,
.alt-calculator-layout .polis-widget-wrap [contenteditable="true"] {
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
}

.alt-calculator-layout .polis-widget-wrap button,
.alt-calculator-layout .polis-widget-wrap [role="button"],
.alt-calculator-layout .polis-widget-wrap input[type="button"],
.alt-calculator-layout .polis-widget-wrap input[type="submit"] {
    box-shadow: 0 10px 24px rgba(26, 115, 232, 0.22) !important;
}

.alt-calculator-layout .calc-steps-grid {
    margin-top: 34px !important;
}

.alt-calculator-layout .calc-step-card {
    background: transparent !important;
    border-color: rgba(26, 115, 232, 0.18) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding-top: 20px !important;
}

.alt-calculator-layout .calc-step-card h3 {
    margin-top: 0 !important;
}

.alt-calculator-layout.is-widget-expanded {
    background:
        linear-gradient(90deg, rgba(247, 251, 255, 0.99) 0%, rgba(247, 251, 255, 0.96) 60%, rgba(247, 251, 255, 0.62) 100%),
        url('../images/osago-calculator-visual.webp') right top / 56% auto no-repeat,
        #eef6ff;
}

@media (max-width: 768px) {
    .alt-calculator-layout.alt-calculator-layout--background {
        background:
            linear-gradient(180deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.93) 48%, rgba(247, 251, 255, 0.82) 100%),
            url('../images/osago-calculator-visual.webp') right top / auto 52% no-repeat,
            #eef6ff;
    }
}


/* === OSAGO V10: slightly narrower transparent step cards === */
@media (min-width: 769px) {
    .alt-calculator-layout:not(.is-widget-expanded) .calc-steps-grid {
        width: min(720px, 69%) !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .alt-calculator-layout:not(.is-widget-expanded) .calc-step-card {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}


/* === OSAGO V10: fix Polis.online address autocomplete dropdown ===
   В V9 сайт принудительно делал внутренние блоки виджета прозрачными.
   Из-за этого список подсказок адреса просвечивал и смешивался с текстом под калькулятором. */
.alt-calculator-layout.alt-calculator-layout--background,
.alt-calculator-layout .alt-calculator-main,
.alt-calculator-layout .alt-widget-card,
.alt-calculator-layout .polis-widget-wrap,
.article-polis-card,
.article-polis-card .polis-widget-wrap {
    overflow: visible !important;
}

.polis-widget-wrap polis-online-widget-osago [class*="suggest" i],
.polis-widget-wrap polis-online-widget-osago [class*="autocomplete" i],
.polis-widget-wrap polis-online-widget-osago [class*="dropdown" i],
.polis-widget-wrap polis-online-widget-osago [class*="drop-down" i],
.polis-widget-wrap polis-online-widget-osago [class*="menu" i],
.polis-widget-wrap polis-online-widget-osago [role="listbox"],
.polis-widget-wrap polis-online-widget-osago [role="option"],
.polis-widget-wrap polis-online-widget-osago ul[role="listbox"],
.polis-widget-wrap polis-online-widget-osago .suggestions-wrapper,
.polis-widget-wrap polis-online-widget-osago .suggestions-suggestions,
.polis-widget-wrap polis-online-widget-osago .suggestions-suggestion,
.polis-widget-wrap polis-online-widget-osago .ui-autocomplete,
.polis-widget-wrap polis-online-widget-osago .ui-menu-item {
    background: #fff !important;
    background-color: #fff !important;
    opacity: 1 !important;
    color: #111827 !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16) !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
    z-index: 2147483647 !important;
}

.polis-widget-wrap polis-online-widget-osago [class*="suggest" i] *,
.polis-widget-wrap polis-online-widget-osago [class*="autocomplete" i] *,
.polis-widget-wrap polis-online-widget-osago [class*="dropdown" i] *,
.polis-widget-wrap polis-online-widget-osago [class*="drop-down" i] *,
.polis-widget-wrap polis-online-widget-osago [role="listbox"] *,
.polis-widget-wrap polis-online-widget-osago [role="option"] * {
    background-color: transparent;
    color: inherit !important;
}

.polis-widget-wrap polis-online-widget-osago [class*="suggest" i]:hover,
.polis-widget-wrap polis-online-widget-osago [class*="autocomplete" i]:hover,
.polis-widget-wrap polis-online-widget-osago [role="option"]:hover,
.polis-widget-wrap polis-online-widget-osago .suggestions-suggestion:hover,
.polis-widget-wrap polis-online-widget-osago .ui-menu-item:hover {
    background: #f3f7ff !important;
    background-color: #f3f7ff !important;
}
