:root {
    --primary: #1d65f5;
    --primary-hover: #1450c9;
    --primary-light: #eff4ff;
    --accent: #ff472e;
    --accent-hover: #e0341c;
    --accent-light: #fff1ef;
    --purple: #8b5cf6;
    --purple-light: #f5f3ff;
    --success: #10b981;
    --success-light: #ecfdf5;
    --dark: #0f172a;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --bg-body: #f8fafc;
    --surface: #ffffff;
    
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 12px 32px rgba(29, 101, 245, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
}

body {
    background-color: var(--bg-body);
    color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }

ul{
    padding: 0;
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(29, 101, 245, 0.15);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(29, 101, 245, 0.25);
}

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 71, 46, 0.22);
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 71, 46, 0.32);
    color: white;
}

.btn-accent:active, .btn-accent:focus {
    background: var(--accent)!important;
    color: white!important;
    box-shadow: 0 8px 20px rgba(255, 71, 46, 0.22)!important;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--bg-page);
    border-color: var(--text-muted);
}

.hero {
    padding: 70px 0 40px;
    text-align: center;
    position: relative;
    padding-bottom: 0px;
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-container{
    margin-bottom: 100px;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Billing Switcher */
.billing-toggle-container {
    display: inline-flex;
    align-items: center;
    background: #e2e8f0;
    padding: 4px;
    border-radius: 100px;
    margin-bottom: 25px;
}

.billing-btn {
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    background: transparent;
    transition: all 0.2s;
}

.billing-btn.active {
    background: var(--surface);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.discount-tag {
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 6px;
}

/* --- PROMO TEST DRIVE BANNER --- */
.promo-trial-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-trial-banner::before {
    content: '⚡';
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 180px;
    opacity: 0.05;
    pointer-events: none;
}

.promo-left {
    max-width: 60%;
    text-align: left;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #38bdf8;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.promo-left h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.promo-left p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.promo-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.promo-price-box {
    text-align: right;
}

.promo-price {
    font-size: 40px;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1;
}

.promo-price-lbl {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 4px;
}

.pricing-grid {
    margin-bottom: 80px;
    position: relative;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    min-width: 380px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 101, 245, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--surface) 0%, #f4f8ff 100%);
    box-shadow: var(--shadow-md);
}

.featured-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(29, 101, 245, 0.2);
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    min-height: 42px;
}

.plan-price {
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #334155;
    font-weight: 500;
    text-align: start;
}

.plan-features li small{
    color: #1d65f5;
    display: block;
}

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--success);
}

.plan-features li.disabled {
    color: #94a3b8;
    text-decoration: line-through;
    opacity: 0.7;
}

.plan-features li.disabled svg {
    color: #cbd5e1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 101, 245, 0.3);
}

.bento-card.wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border: none;
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.bento-card.wide .bento-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #38bdf8;
}

.bento-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.bento-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.bento-card.wide p {
    color: #94a3b8;
}

/* --- REAL STORIES COMPARISON BLOCK --- */
.comparison-strip {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

.comp-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.comp-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 6px;
}

.comp-content p {
    font-size: 14.5px;
    color: #b45309;
    line-height: 1.5;
}

/* --- FINAL CTA STRIP --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* --- FAQ SECTION --- */
.faq-section {
    margin-bottom: 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.faq-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    outline: none;
    font-size: 14px;
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 101, 245, 0.12);
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 60px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.wide { grid-column: span 1; }
    .faq-grid { grid-template-columns: 1fr; }
    .promo-trial-banner { flex-direction: column; text-align: center; gap: 24px; }
    .promo-left { max-width: 100%; text-align: center; }
}

.plan-price span{
    font-size: 16px;
    color: var(--text-muted);
}

.tariffs-list-item-price-now{
    font-size: 35px!important;
    font-weight: bold!important;
    color: black!important;
}

.tariffs-list-item-price-old{
    font-size: 25px!important;
    color: black!important;
    margin-left: 10px;
    display: inline-block;
    position: relative;
}

.tariffs-list-item-price-old::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: rotate(350deg);
  height: 2px;
  background: #ff472e;
  pointer-events: none;
}

.btn .spinner-border{
    width: 18px; height: 18px; border-width: 2px; margin-right: 5px;
}

.main-wrapper{
    margin: 0!important;
}

.plan-image{
    text-align: center;
}

.plan-image img{
    height: 64px;
    margin-bottom: 15px;
}

.tariffs-swiper-prev{
    position: absolute;
    left: -30px;
    top: 50%;
    margin-top: -30px;
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: white;
    cursor: pointer;
    color: black;
    box-shadow: rgb(0 0 0 / 6%) 0 4px 8px 0;
    z-index: 5;    
}

.tariffs-swiper-next{
    position: absolute;
    right: -30px;
    top: 50%;
    margin-top: -30px;
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: white;
    cursor: pointer;
    color: black;
    box-shadow: rgb(0 0 0 / 6%) 0 4px 8px 0;
    z-index: 5;
}

.tariffs-swiper-prev i, .tariffs-swiper-next i{
    font-size: 26px;
}

.tariffs-action-payment{
    width: 100%;
}

.tariffs-action-payment button{
    width: 100%!important;
    max-width: 100%!important;
    margin-top: 40px;
}

.tariffs-swiper{
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 30px;
}

.tariffs-list-item-price-year{
    display: none;
}

.tariffs-swiper {
  opacity: 0;
  visibility: hidden;
}

.tariffs-swiper.swiper-initialized {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease;
}

.swiper-button-disabled {
  display: none;
}