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

:root {
    --color-text: #1d1d1f;
    --color-text-secondary: #6e6e73;
    --color-bg: #fbfbfd;
    --color-bg-alt: #f5f5f7;
    --color-white: #ffffff;
    --color-success: #34c759;

    /* Gradient palette from logo */
    --color-blue: #00a2ff;
    --color-purple: #8b5cf6;
    --color-accent: #00a2ff;
    --color-accent-hover: #0090e0;
    --gradient: linear-gradient(135deg, #00a2ff, #8b5cf6);
    --gradient-soft: linear-gradient(135deg, rgba(0,162,255,0.08), rgba(139,92,246,0.08));
    --gradient-medium: linear-gradient(135deg, rgba(0,162,255,0.15), rgba(139,92,246,0.15));

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-glow: 0 8px 40px rgba(0,162,255,0.15);
    --shadow-glow-purple: 0 8px 40px rgba(139,92,246,0.15);
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --max-width: 1080px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.5;
    font-size: 17px;
    overflow-x: hidden;
    /* Subtle noise texture overlay */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

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

a:hover {
    color: var(--color-accent-hover);
}

img {
    max-width: 100%;
    display: block;
}

/* ===== Layout ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Gradient divider between sections */
.problem::before,
.features::after,
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,162,255,0.12), rgba(139,92,246,0.12), transparent);
    pointer-events: none;
}

/* ===== Typography ===== */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    max-width: 600px;
    line-height: 1.5;
}

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

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 17px;
    font-weight: 500;
    font-family: var(--font);
    border: none;
    border-radius: 980px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: var(--gradient);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0,162,255,0.25);
}

.btn-primary:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,162,255,0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid rgba(0,0,0,0.12);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(0,162,255,0.04);
}

.btn-large {
    padding: 18px 36px;
    font-size: 19px;
    font-weight: 600;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-text);
    font-weight: 600;
}

.btn-white:hover {
    background: var(--color-white);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,255,255,0.3);
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(251,251,253,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 400;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-text);
}

.nav-cta {
    background: var(--gradient) !important;
    color: var(--color-white) !important;
    padding: 6px 16px;
    border-radius: 980px;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.nav-cta:hover {
    opacity: 0.9 !important;
    color: var(--color-white) !important;
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background:
        url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 32V0h1v32zM32 0H0v1h32z' fill='%23000' fill-opacity='0.03'/%3E%3C/svg%3E"),
        radial-gradient(ellipse at 50% 0%, rgba(0,162,255,0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(139,92,246,0.06) 0%, transparent 60%),
        var(--color-bg);
    overflow: hidden;
    position: relative;
}

/* Subtle gradient orbs in hero */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
}

.hero::before {
    width: 500px;
    height: 500px;
    background: var(--color-blue);
    top: -100px;
    left: -150px;
}

.hero::after {
    width: 400px;
    height: 400px;
    background: var(--color-purple);
    bottom: -80px;
    right: -100px;
}

.hero .section-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero .section-subtitle {
    font-size: 21px;
    max-width: 560px;
    margin: 0 auto 40px;
    position: relative;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    position: relative;
}

.hero-note {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 60px;
    position: relative;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0 auto;
    max-width: 420px;
    position: relative;
}

.hero-icon-box {
    width: 96px;
    height: 96px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.hero-icon-box.telegram {
    background: linear-gradient(135deg, #37aee2, #1e96c8);
}

.hero-icon-box.max-icon {
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    border-radius: 50%;
}

.hero-icon-box.max-icon img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.hero-icon-box svg {
    width: 48px;
    height: 48px;
}

.hero-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-arrow-line {
    width: 64px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    position: relative;
    opacity: 0.6;
}

.hero-arrow-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-right: 2.5px solid var(--color-purple);
    border-top: 2.5px solid var(--color-purple);
    transform: rotate(45deg);
    opacity: 0.6;
}

.hero-arrow-text {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ===== Problem ===== */
.problem {
    background: var(--color-white);
    position: relative;
}

.problem::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,92,246,0.04) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.problem-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.problem-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.problem-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.problem-cost {
    font-size: 15px;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Steps ===== */
.steps-section {
    background: var(--color-bg-alt);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(0,162,255,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139,92,246,0.04) 0%, transparent 50%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    text-align: center;
    padding: 8px 0;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(0,162,255,0.25);
}

.step-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* ===== Features ===== */
.features {
    background: var(--color-white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,162,255,0.03) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.feature-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(0,162,255,0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: var(--gradient-soft);
    border-radius: 12px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ===== Pricing ===== */
.pricing {
    background: var(--color-bg-alt);
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(0,162,255,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(139,92,246,0.05) 0%, transparent 50%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 740px;
    margin: 48px auto 0;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1.5px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.recommended {
    border-color: transparent;
    background: linear-gradient(var(--color-white), var(--color-white)) padding-box,
                var(--gradient) border-box;
    border: 2px solid transparent;
}

.pricing-card.recommended:hover {
    box-shadow: var(--shadow-glow);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--color-white);
    padding: 4px 16px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.pricing-price {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-card.recommended .price-amount {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
}

.pricing-card.recommended .price-currency {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.price-savings {
    display: inline-block;
    background: rgba(52, 199, 89, 0.1);
    color: var(--color-success);
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 15px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* ===== FAQ ===== */
.faq {
    background: var(--color-white);
    position: relative;
}

.faq::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.03) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    user-select: none;
    transition: color var(--transition);
}

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

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--color-text-secondary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
                padding 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===== CTA Final ===== */
.cta-final {
    background: linear-gradient(135deg, #0a1628, #1a1040);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before,
.cta-final::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.cta-final::before {
    width: 400px;
    height: 400px;
    background: var(--color-blue);
    top: -100px;
    left: -100px;
}

.cta-final::after {
    width: 350px;
    height: 350px;
    background: var(--color-purple);
    bottom: -80px;
    right: -80px;
}

.cta-final .section-title {
    color: var(--color-white);
    position: relative;
}

.cta-final .section-subtitle {
    color: rgba(255,255,255,0.65);
    margin: 0 auto 32px;
    position: relative;
}

.cta-final .hero-note {
    color: rgba(255,255,255,0.4);
    margin-top: 16px;
    margin-bottom: 0;
    position: relative;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0a1628, #1a1040);
    color: rgba(255,255,255,0.4);
    padding: 0;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer a {
    color: rgba(255,255,255,0.4);
}

.footer a:hover {
    color: rgba(255,255,255,0.8);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-col {
    display: flex;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-copyright {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== Legal Pages ===== */
.legal-page {
    padding: 120px 0 80px;
    background: var(--color-bg);
}

.legal-page h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--color-text);
}

.legal-page .legal-date {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 36px 0 16px;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--color-text);
}

.legal-page p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin: 0 0 16px 24px;
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.legal-page li {
    margin-bottom: 6px;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 15px;
}

.legal-page th,
.legal-page td {
    border: 1px solid rgba(0,0,0,0.08);
    padding: 12px 16px;
    text-align: left;
    color: var(--color-text-secondary);
}

.legal-page th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-text);
}

.legal-page .requisites {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 24px 0;
}

.legal-page .requisites p {
    margin-bottom: 4px;
    font-size: 15px;
}

.legal-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 32px;
    font-size: 15px;
    font-weight: 500;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 16px 0 24px;
    flex-wrap: wrap;
}

.payment-logos .logo-box {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .nav-links {
        display: none;
    }

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

    .hero .section-title {
        font-size: clamp(32px, 8vw, 44px);
    }

    .hero .section-subtitle {
        font-size: 17px;
    }

    .hero-visual {
        gap: 20px;
    }

    .hero-icon-box {
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }

    .hero-icon-box.max-icon img {
        width: 72px;
        height: 72px;
    }

    .hero-icon-box svg {
        width: 36px;
        height: 36px;
    }

    .hero::before,
    .hero::after {
        opacity: 0.08;
    }

    .problem-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-amount {
        font-size: 40px;
    }

    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px 0;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .btn-large {
        padding: 16px 28px;
        font-size: 17px;
    }

    .hero-arrow-line {
        width: 40px;
    }
}
