.premium-form-section {
    padding: 60px 20px;
    background: #f5f6ff;
}

.premium-form-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* LEFT SIDE */
.premium-left {
    flex: 1;
    background: linear-gradient(135deg, #7b61ff, #ff7a7a);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.premium-left p {
    opacity: 0.9;
}

/* RIGHT SIDE */
.premium-right {
    flex: 1;
    background: #2c3e50;
    color: white;
    padding: 40px;
}

.premium-right h2 {
    margin-bottom: 25px;
}

.form-row {
    display: block;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    box-sizing: border-box;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #7b61ff, #ff7a7a);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

.trust {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.8;
}

/* LEFT CONTENT */
.intro {
    margin: 15px 0 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.seo-points {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.seo-points li {
    margin-bottom: 10px;
    font-size: 15px;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.highlight-box p {
    font-size: 14px;
    margin-top: 5px;
}

.trust-line {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* PRICING / INFO SECTION */
.pricing-range {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f6ff, #ffffff);
}

.pricing-range-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.pricing-image {
    flex: 1;
}

.pricing-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-content {
    flex: 1;
}

.tag {
    color: #7b61ff;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
}

.pricing-content h2 {
    font-size: 32px;
    margin: 10px 0;
}

.price-box {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(45deg, #7b61ff, #ff7a7a);
    -webkit-background-clip: text;
    color: transparent;
    margin: 15px 0;
}

.desc {
    color: #555;
    margin-bottom: 20px;
}

.pricing-points div {
    margin-bottom: 10px;
    font-size: 15px;
}

.pricing-note {
    margin-top: 20px;
    padding: 12px;
    background: rgba(123, 97, 255, 0.08);
    border-radius: 10px;
    font-size: 14px;
}

/* TRUST SECTION */
.trust-section {
    padding: 80px 20px;
    background: #ffffff;
}

.trust-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.trust-left {
    flex: 1;
}

.trust-tag {
    color: #7b61ff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.trust-left h2 {
    font-size: 32px;
    margin: 10px 0;
}

.trust-intro {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.trust-points {
    list-style: none;
    padding: 0;
}

.trust-points li {
    margin-bottom: 10px;
    font-size: 15px;
}

.trust-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-card {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-card h3 {
    font-size: 28px;
    background: linear-gradient(45deg, #7b61ff, #ff7a7a);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    color: #555;
}

/* DELIVERABLES */
.deliverables-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f6ff, #ffffff);
}

.deliverables-container {
    max-width: 1100px;
    margin: auto;
}

.deliverables-header {
    text-align: center;
    margin-bottom: 50px;
}

.deliverables-header h2 {
    font-size: 32px;
    margin: 10px 0;
}

.deliverables-header .intro {
    color: #555;
    max-width: 600px;
    margin: auto;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.deliverable-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.deliverable-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.deliverable-card .icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.deliverable-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.deliverable-card p {
    font-size: 14px;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .premium-form-container,
    .pricing-range-container,
    .trust-container {
        flex-direction: column;
    }

    .premium-right {
        order: 1;
        margin-bottom: 20px;
    }

    .premium-left {
        order: 2;
        text-align: center;
        align-items: center;
    }

    .trust-right,
    .deliverables-grid {
        grid-template-columns: 1fr;
    }

    .pricing-content h2,
    .deliverables-header h2,
    .trust-left h2 {
        font-size: 24px;
    }

    .price-box {
        font-size: 28px;
    }
}