/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--chat-yuapp-font-family);
    background: var(--chat-yuapp-background);
    color: var(--chat-yuapp-text);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    cursor: pointer;
    font-family: inherit;
    border: none;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 80px 0;
}
.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-title .highlight {
    background: linear-gradient(135deg, var(--chat-yuapp-primary), var(--chat-yuapp-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 18px;
    color: var(--chat-yuapp-text-secondary);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

/* ---------- Анимации ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes typing {
    0%, 80%, 100% { opacity: 0; transform: scale(0.8); }
    40% { opacity: 1; transform: scale(1); }
}
@keyframes pricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); color: #ffd700; }
}

/* ---------- Header ---------- */
.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(203, 213, 225, 0.2);
    transition: box-shadow 0.3s;
}
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--chat-yuapp-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo span {
    background: linear-gradient(135deg, var(--chat-yuapp-primary), var(--chat-yuapp-primary-light));
    color: white;
    border-radius: var(--chat-yuapp-radius-sm);
    padding: 2px 14px;
    font-size: 18px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.header-price {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--chat-yuapp-primary);
    color: white;
    padding: 6px 16px 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    white-space: nowrap;
}
.header-price .icon {
    font-size: 18px;
}
.header-price .price-value {
    transition: color 0.2s;
}
.header-price.pulse .price-value {
    animation: pricePulse 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    transition: all 0.25s;
    text-align: center;
}
.btn-outline {
    border-color: var(--chat-yuapp-primary);
    color: var(--chat-yuapp-primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--chat-yuapp-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 76, 113, 0.25);
}
.btn-primary {
    background: var(--chat-yuapp-primary);
    color: white;
    border-color: var(--chat-yuapp-primary);
}
.btn-primary:hover {
    background: var(--chat-yuapp-primary-light);
    border-color: var(--chat-yuapp-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 76, 113, 0.35);
}
.btn-lg {
    padding: 14px 40px;
    font-size: 18px;
}
.btn-block {
    width: 100%;
    text-align: center;
}
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ---------- Hero ---------- */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(165deg, #f8fafc 0%, #eef2f7 50%, #e8edf5 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(60, 76, 113, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(60, 76, 113, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-badge {
    display: inline-block;
    background: rgba(60, 76, 113, 0.1);
    color: var(--chat-yuapp-primary);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    letter-spacing: 0.5px;
    border: 1px solid rgba(60, 76, 113, 0.1);
}
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--chat-yuapp-text);
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--chat-yuapp-primary), var(--chat-yuapp-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 20px;
    color: var(--chat-yuapp-text-secondary);
    max-width: 540px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--chat-yuapp-border);
}
.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--chat-yuapp-text-secondary);
}
.hero-stats .stat-item strong {
    color: var(--chat-yuapp-text);
    font-weight: 700;
}

/* Hero Widget Preview */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.widget-preview {
    background: var(--chat-yuapp-surface);
    border-radius: var(--chat-yuapp-radius);
    padding: 24px 20px 20px;
    box-shadow: var(--chat-yuapp-shadow);
    width: 100%;
    max-width: 460px;
    border: 1px solid rgba(203, 213, 225, 0.3);
    animation: float 4s ease-in-out infinite;
}
.widget-preview .widget-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--chat-yuapp-border);
    margin-bottom: 16px;
}
.widget-preview .widget-header .status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--chat-yuapp-text-secondary);
}
.widget-preview .widget-header .status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: pulse 2s infinite;
}
.widget-preview .widget-header .room-badge {
    background: var(--chat-yuapp-background);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--chat-yuapp-primary);
    margin-left: auto;
}
.widget-preview .chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    animation: slideIn 0.5s ease;
}
.widget-preview .chat-message .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--chat-yuapp-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}
.widget-preview .chat-message .avatar.green { background: #22c55e; }
.widget-preview .chat-message .avatar.purple { background: #8b5cf6; }
.widget-preview .chat-message .avatar.orange { background: #f59e0b; }
.widget-preview .chat-message .bubble {
    background: var(--chat-yuapp-bubble-other);
    padding: 10px 16px;
    border-radius: var(--chat-yuapp-radius-sm);
    border-top-left-radius: 4px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.5;
}
.widget-preview .chat-message.own {
    flex-direction: row-reverse;
}
.widget-preview .chat-message.own .bubble {
    background: var(--chat-yuapp-bubble-own);
    color: white;
    border-top-left-radius: var(--chat-yuapp-radius-sm);
    border-top-right-radius: 4px;
}
.widget-preview .chat-message .bubble .reaction {
    display: inline-block;
    margin-top: 4px;
    font-size: 14px;
}
.widget-preview .chat-message .bubble .time {
    font-size: 11px;
    opacity: 0.6;
    margin-left: 8px;
}
.widget-preview .typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--chat-yuapp-text-secondary);
    font-size: 13px;
}
.widget-preview .typing-indicator .dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--chat-yuapp-text-secondary);
    margin: 0 2px;
    animation: typing 1.4s infinite;
}
.widget-preview .typing-indicator .dots span:nth-child(2) {
    animation-delay: 0.2s;
}
.widget-preview .typing-indicator .dots span:nth-child(3) {
    animation-delay: 0.4s;
}
.widget-preview .widget-input {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--chat-yuapp-border);
}
.widget-preview .widget-input input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--chat-yuapp-border);
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
    background: var(--chat-yuapp-background);
}
.widget-preview .widget-input input:focus {
    border-color: var(--chat-yuapp-primary);
    box-shadow: 0 0 0 3px rgba(60, 76, 113, 0.1);
}
.widget-preview .widget-input button {
    background: var(--chat-yuapp-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.widget-preview .widget-input button:hover {
    background: var(--chat-yuapp-primary-light);
    transform: scale(1.05);
}

/* ---------- Problem Section ---------- */
.problem-section {
    background: var(--chat-yuapp-surface);
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.problem-card {
    padding: 28px 24px;
    background: var(--chat-yuapp-background);
    border-radius: var(--chat-yuapp-radius-sm);
    border: 1px solid transparent;
    transition: all 0.3s;
    text-align: center;
}
.problem-card:hover {
    border-color: var(--chat-yuapp-border);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.problem-card .icon {
    font-size: 40px;
    margin-bottom: 12px;
}
.problem-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}
.problem-card p {
    font-size: 15px;
    color: var(--chat-yuapp-text-secondary);
}

/* ---------- Features Section ---------- */
.features-section {
    background: var(--chat-yuapp-background);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: var(--chat-yuapp-surface);
    padding: 32px 24px;
    border-radius: var(--chat-yuapp-radius-sm);
    border: 1px solid var(--chat-yuapp-border);
    transition: all 0.3s;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--chat-yuapp-primary-light);
}
.feature-card .icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.feature-card p {
    font-size: 15px;
    color: var(--chat-yuapp-text-secondary);
}

/* ---------- Audience Section ---------- */
.audience-section {
    background: var(--chat-yuapp-surface);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.audience-card {
    padding: 28px 20px;
    background: var(--chat-yuapp-background);
    border-radius: var(--chat-yuapp-radius-sm);
    border-left: 4px solid var(--chat-yuapp-primary);
    transition: all 0.3s;
}
.audience-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.audience-card .icon {
    font-size: 32px;
    margin-bottom: 8px;
}
.audience-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}
.audience-card p {
    font-size: 14px;
    color: var(--chat-yuapp-text-secondary);
}

/* ---------- Configurator ---------- */
.configurator {
    background: var(--chat-yuapp-surface);
    border-radius: var(--chat-yuapp-radius);
    padding: 60px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--chat-yuapp-border);
    max-width: 900px;
    margin: 0 auto;
}
.configurator .section-title {
    font-size: 32px;
}
.config-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.config-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--chat-yuapp-background);
    border-radius: var(--chat-yuapp-radius-sm);
    border: 1px solid var(--chat-yuapp-border);
    transition: 0.2s;
}
.config-row:hover {
    border-color: var(--chat-yuapp-primary-light);
}
.config-row .label {
    flex: 1 1 200px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}
.config-row .label .info {
    color: var(--chat-yuapp-text-secondary);
    font-weight: 400;
    font-size: 13px;
}
.config-row .control {
    flex: 2 1 260px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}
.switch input:checked + .slider {
    background: var(--chat-yuapp-primary);
}
.switch input:checked + .slider:before {
    transform: translateX(22px);
}
.switch input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 160px;
    height: 6px;
    border-radius: 4px;
    background: var(--chat-yuapp-border);
    outline: none;
    transition: 0.2s;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--chat-yuapp-primary);
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--chat-yuapp-primary);
    cursor: pointer;
    border: none;
}
input[type="range"]:disabled {
    opacity: 0.5;
}
input[type="range"]:disabled::-webkit-slider-thumb {
    cursor: not-allowed;
}
input[type="range"]:disabled::-moz-range-thumb {
    cursor: not-allowed;
}
.range-value {
    min-width: 48px;
    font-weight: 600;
    color: var(--chat-yuapp-primary);
    text-align: center;
    font-size: 15px;
}
.config-row .sub-options {
    flex: 0 0 100%;
    padding-left: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border-left: 2px solid var(--chat-yuapp-border);
    margin-top: 6px;
}
.config-row .sub-options .sub-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.config-row .sub-options .sub-item .label {
    flex: 0 0 auto;
    font-weight: 400;
    font-size: 14px;
    color: var(--chat-yuapp-text-secondary);
}
.config-row .sub-options .sub-item input:disabled {
    opacity: 0.5;
}

.price-summary {
    background: linear-gradient(135deg, var(--chat-yuapp-primary), var(--chat-yuapp-primary-light));
    color: white;
    padding: 28px 36px;
    border-radius: var(--chat-yuapp-radius-sm);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
}
.price-summary .total {
    font-size: 32px;
    font-weight: 700;
}
.price-summary .total small {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}
.price-summary .btn {
    background: white;
    color: var(--chat-yuapp-primary);
    border: none;
    font-weight: 700;
}
.price-summary .btn:hover {
    background: var(--chat-yuapp-bubble-other);
    transform: translateY(-2px);
}
.price-summary .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--chat-yuapp-primary), var(--chat-yuapp-primary-dark));
    color: white;
    text-align: center;
    padding: 80px 0;
    border-radius: var(--chat-yuapp-radius);
    margin: 40px 0;
}
.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 28px;
}
.cta-section .btn {
    background: white;
    color: var(--chat-yuapp-primary);
    border: none;
    font-weight: 700;
    font-size: 18px;
    padding: 14px 44px;
}
.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.cta-section .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}
.faq-section .section-title {
    font-size: 36px;
}
.faq-item {
    background: var(--chat-yuapp-surface);
    border-radius: var(--chat-yuapp-radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--chat-yuapp-border);
    overflow: hidden;
    transition: 0.2s;
}
.faq-item:hover {
    border-color: var(--chat-yuapp-primary-light);
}
.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--chat-yuapp-text);
}
.faq-question .arrow {
    transition: transform 0.3s;
    font-size: 20px;
    color: var(--chat-yuapp-text-secondary);
}
.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--chat-yuapp-text-secondary);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--chat-yuapp-surface);
    padding: 40px 0;
    border-top: 1px solid var(--chat-yuapp-border);
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--chat-yuapp-text-secondary);
}
.footer a {
    color: var(--chat-yuapp-primary);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.footer-links a {
    color: var(--chat-yuapp-text-secondary);
    transition: 0.2s;
}
.footer-links a:hover {
    color: var(--chat-yuapp-primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero p {
        max-width: 100%;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero h1 {
        font-size: 40px;
    }
    .widget-preview {
        max-width: 400px;
    }
}
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 17px;
    }
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .configurator {
        padding: 30px 16px;
    }
    .config-row {
        flex-direction: column;
        align-items: stretch;
    }
    .config-row .control {
        flex-direction: column;
        align-items: stretch;
    }
    .config-row .sub-options {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--chat-yuapp-border);
        padding-top: 12px;
    }
    .price-summary {
        flex-direction: column;
        text-align: center;
    }
    .header-inner {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .header-actions {
        gap: 8px;
    }
    .header-price {
        font-size: 13px;
        padding: 4px 12px 4px 10px;
    }
    .cta-section h2 {
        font-size: 30px;
    }
    .cta-section {
        padding: 50px 20px;
        border-radius: var(--chat-yuapp-radius-sm);
    }
    .faq-section .section-title {
        font-size: 28px;
    }
}
@media (max-width: 480px) {
    .btn-lg {
        padding: 12px 24px;
        font-size: 16px;
    }
    .container {
        padding: 0 16px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .header-price .price-label {
        display: none;
    }
    .widget-preview {
        padding: 16px;
    }
}