:root {
    /* Elegant Minimalist Palette */
    --primary: #facc15;
    /* Sophisticated Yellow */
    --primary-soft: #fef9c3;
    --text-dark: #000000;
    --text-main: #1a1a1a;
    --text-light: #374151;
    --bg-white: #ffffff;
    --bg-dots: radial-gradient(#e5e7eb 1px, transparent 1px);
    --border-thin: 1px solid #e5e7eb;
    --border-bold: 2px solid #000000;
    --radius-lg: 24px;
    --radius-md: 12px;
    --shadow-soft: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.7;
    padding-top: 90px;
}

.vc-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.vc-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vc-nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.vc-brand {
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc-brand b {
    color: var(--text-dark);
}

.vc-brand span {
    background: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
}

.vc-menu {
    display: flex;
    gap: 40px;
}

.vc-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.vc-menu a:hover {
    opacity: 1;
}

.vc-btn {
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.vc-btn--primary {
    background: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 4px 0 #000000;
    border: 2px solid #000000;
}

.vc-btn--primary:hover {
    transform: translateY(2px);
    box-shadow: 0 0px 0 #000000;
}

.vc-btn--text {
    color: var(--text-dark);
    font-weight: 700;
}

.vc-hero {
    padding: 140px 0 100px;
    background-image: var(--bg-dots);
    background-size: 30px 30px;
}

.vc-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.vc-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: left;
}

.vc-hero h1 span {
    box-shadow: inset 0 -0.4em 0 var(--primary);
}

.vc-hero p {
    margin: 0 0 40px;
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: left;
}

.vc-hero__buttons {
    text-align: left;
}

.vc-hero__img-wrap {
    position: relative;
    display: block;
}

.vc-hero__img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid #eeeeee;
    background: white;
}

.vc-section {
    padding: 120px 0;
}

.vc-section__head {
    margin-bottom: 80px;
    max-width: 700px;
}

.vc-section__head h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.vc-section__head span {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.vc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.vc-card {
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    border: 1px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vc-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08);
}

.vc-card__icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.vc-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.vc-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.vc-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.vc-feature-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.vc-check-list {
    list-style: none;
}

.vc-check-list li {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 20px;
    font-weight: 600;
}

.vc-check-list li b {
    color: var(--text-dark);
}

.vc-check {
    color: var(--primary);
    font-weight: 900;
}

.vc-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
    width: 100%;
}

.vc-step {
    padding: 40px 20px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
}

.vc-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
}

.vc-step__n {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    border: 2.5px solid #000;
    box-shadow: 3px 3px 0 #000;
    margin-bottom: 24px;
}

.vc-step h4 {
    font-weight: 900;
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.vc-step p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
}

/* PLANES SECTION - FIXED TO 4 COLUMNS */
.vc-plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 1050px) {
    .vc-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vc-plans-grid {
        grid-template-columns: 1fr;
    }
}

.vc-plan {
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vc-plan:hover {
    transform: translateY(-10px);
    border-color: #000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.vc-plan--featured {
    background: #000;
    color: #fff;
    border-color: #000;
}

.vc-plan--featured .vc-check {
    color: var(--primary);
}

.vc-plan--featured p {
    color: rgba(255, 255, 255, 0.6);
}

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

.vc-plan h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.vc-plan__price {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 20px 0;
}

.vc-plan__price span {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
}

.vc-plan p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vc-plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.vc-plan__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.vc-plan .vc-btn {
    width: 100%;
}

.vc-footer {
    padding: 100px 0 50px;
    border-top: 1px solid #f0f0f0;
}

.vc-footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.vc-footer__col h5 {
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.vc-footer__col a {
    display: block;
    text-decoration: none;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.vc-footer__col a:hover {
    color: var(--text-dark);
}

@media (max-width: 900px) {
    .vc-hero h1 {
        font-size: 2.8rem;
    }

    .vc-hero p {
        font-size: 1.1rem;
    }

    .vc-menu {
        display: none;
    }

    .vc-cards {
        grid-template-columns: 1fr;
    }

    .vc-feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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