/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #070913;
    --card-bg: rgba(15, 18, 36, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary: #8a2be2; /* Electric violet */
    --primary-glow: rgba(138, 43, 226, 0.4);
    --secondary: #00f0ff; /* Neon cyan */
    --secondary-glow: rgba(0, 240, 255, 0.3);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #6b7280;
    --green-accent: #10b981;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Glow Elements */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.glow-1 {
    top: 5%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: var(--primary);
}

.glow-2 {
    top: 30%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    opacity: 0.25;
}

.glow-3 {
    bottom: 10%;
    left: 20%;
    width: 380px;
    height: 380px;
    background: var(--primary);
    opacity: 0.2;
}

/* Typography & General Classes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #b066ff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan {
    color: var(--secondary);
}

.text-green {
    color: var(--green-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #a24bfa);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::after {
    opacity: 0.8;
    filter: blur(8px);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Badges */
.badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 0.7rem;
    font-weight: 800;
    color: #000;
    padding: 2px 8px;
    border-radius: 8px;
    margin-left: 8px;
    letter-spacing: 0.05em;
}

/* Header */
header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 9, 19, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.logo-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px 0;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.announcement {
    display: inline-flex;
    align-items: center;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 4px 12px 4px 4px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.announcement-badge {
    background: var(--primary);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-right: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* Chat Visual Card */
.visual-card {
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.12);
}

.visual-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.visual-dots {
    display: flex;
    gap: 6px;
}

.visual-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.visual-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.visual-title i {
    color: #229ED9; /* Telegram color */
}

.visual-body {
    padding: 24px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: flex-end;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: fadeIn 0.4s ease forwards;
}

.chat-message .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.chat-message .avatar.ai {
    background: rgba(138, 43, 226, 0.15);
    color: #c084fc;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.message-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 0 16px 16px 16px;
    max-width: 85%;
    position: relative;
}

.chat-message.outgoing .message-content {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.2);
    border-radius: 16px 0 16px 16px;
    align-self: flex-end;
}

.chat-message.outgoing {
    flex-direction: row-reverse;
}

.message-content .sender {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.chat-message.outgoing .message-content .sender {
    color: #d8b4fe;
    text-align: right;
}

.message-content p {
    font-size: 0.88rem;
    color: var(--text-main);
}

.message-content .time {
    display: block;
    font-size: 0.65rem;
    color: var(--text-dark);
    margin-top: 4px;
    text-align: right;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 6px 0;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    animation: typing 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

.action-success-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--green-accent);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    animation: slideUp 0.3s ease forwards;
    align-self: center;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.icon-purple {
    background: rgba(138, 43, 226, 0.15);
    color: #c084fc;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.icon-cyan {
    background: rgba(0, 240, 255, 0.15);
    color: #22d3ee;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.icon-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.feature-bullets li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-bullets li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Calculator Section */
.calculator-section {
    padding: 60px 0 100px 0;
}

.calculator-card {
    padding: 60px;
    border-color: rgba(255, 255, 255, 0.1);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.slider-group {
    margin-top: 28px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.slider-header label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.slider-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.results-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.result-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.result-box.highlighted {
    border-bottom: none;
    background: rgba(138, 43, 226, 0.08);
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 16px 20px;
    border-radius: 12px;
}

.result-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.result-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.result-box.highlighted .result-value {
    font-size: 1.8rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

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

.pricing-card {
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(138, 43, 226, 0.5);
    background: rgba(20, 15, 45, 0.6);
    box-shadow: 0 15px 35px var(--primary-glow);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.price .currency {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
}

.price .amount {
    font-size: 3.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.price .period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 40px;
}

hr {
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.pricing-features li.disabled {
    color: var(--text-dark);
}

.pricing-features li i {
    font-size: 0.95rem;
}

.pricing-features li i.fa-circle-check {
    color: var(--secondary);
}

.pricing-features li i.fa-circle-xmark {
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0 120px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px 24px 24px 24px;
    max-height: 500px;
    border-top-color: var(--border-color);
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

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

/* Footer */
footer {
    background: #04050a;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 0.85fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-left p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 16px 0 24px 0;
    max-width: 320px;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-dark);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-4px); opacity: 1; }
}

.hidden {
    display: none !important;
}

/* Responsive Web Design */
@media (max-width: 1024px) {
    .hero-container, .calculator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .features-grid, .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-card {
        padding: 30px 20px;
    }

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

/* Highly Optimized iPhone & Compact Mobile Viewport Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    header {
        height: 70px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo .badge {
        font-size: 0.6rem;
        padding: 1px 6px;
        margin-left: 4px;
    }

    .header-actions .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .hero-section {
        padding: 50px 0 40px 0;
    }

    .announcement {
        padding: 3px 10px;
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 16px;
        display: block;
        text-align: center;
    }

    .announcement-badge {
        display: inline-block;
        margin-bottom: 4px;
    }

    .hero-content h1 {
        font-size: 2.0rem;
        line-height: 1.2;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 24px;
    }

    .hero-cta {
        width: 100%;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding-top: 20px;
        text-align: center;
    }

    .stat-num {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.68rem;
        line-height: 1.2;
    }

    /* Core Features */
    .features-section, .calculator-section, .pricing-section, .faq-section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }

    /* Visual chat card on iPhone */
    .visual-body {
        padding: 16px;
        min-height: 240px;
    }

    .chat-message .avatar {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .message-content {
        padding: 8px 12px;
    }

    .message-content p {
        font-size: 0.82rem;
    }

    .action-success-badge {
        font-size: 0.72rem;
        padding: 6px 12px;
    }

    /* Calculator Adjustments */
    .calculator-card {
        padding: 24px 16px;
    }

    .slider-header label {
        font-size: 0.88rem;
    }

    .calc-results {
        padding: 20px 16px;
    }

    .result-value {
        font-size: 1.2rem;
    }

    .result-box.highlighted .result-value {
        font-size: 1.5rem;
    }

    /* Pricing Section */
    .pricing-card {
        padding: 32px 20px;
    }

    .price .amount {
        font-size: 2.6rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }

    /* FAQ accordion */
    .faq-question {
        padding: 18px 16px;
        font-size: 0.92rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    .faq-item.active .faq-answer {
        padding: 14px 16px 18px 16px;
    }
}
