.page-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.page-hero h1 .highlight {
    color: #38bdf8;
}
.page-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #cbd5e1;
}

/* Pricing Section */
.pricing-section {
    padding: 0 2rem 5rem;
}
.pricing-intro {
    text-align: center;
    color: #475569;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}
.pricing-intro .discount-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
    margin: 1rem auto;
    font-weight: 600;
    color: #92400e;
    max-width: 600px;
}

/* Plan Type Headers */
.plan-type-header {
    text-align: center;
    margin: 4rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}
.plan-type-header h2 {
    font-size: 2.2rem;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.plan-type-header.diy h2 {
    color: #3b82f6;
}
.plan-type-header.managed h2 {
    color: #8b5cf6;
}
.plan-type-header p {
    color: #64748b;
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.plan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: relative;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.plan-card.recommended::before {
    content: "RECOMMENDED";
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0 0 0 12px;
    z-index: 2;
}
.plan-card-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.plan-card-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.plan-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0.5rem 0;
}
.plan-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}
.plan-subtitle {
    color: #64748b;
    font-style: italic;
    font-size: 0.95rem;
}
.plan-features {
    padding: 1.8rem 2rem;
    flex-grow: 1;
}
.plan-features ul {
    list-style: none;
}
.plan-features li {
    padding: 0.5rem 0;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.plan-features li i {
    color: #10b981;
    margin-top: 0.3rem;
    flex-shrink: 0;
}
.plan-cta {
    padding: 1.8rem 2rem;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}
.plan-button {
    display: inline-block;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    width: 100%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}
.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}
.plan-button.secondary {
    background: #97bdf1;
    color: #475569;
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.2);
}
.plan-button.secondary:hover {
    background: #cbd5e1;
    box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3);
}

/* Content Sections */
.content-section {
    padding: 0 2rem 5rem;
}
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}
.section-title p {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* AI Blog Writer Section */
.ai-blog-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5rem 2rem;
    border-top: 1px solid #bae6fd;
    border-bottom: 1px solid #bae6fd;
    margin-bottom: 5rem;
}
.ai-blog-container {
    max-width: 900px;
    margin: 0 auto;
}
.ai-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.ai-blog-item {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}
.ai-blog-item:hover {
    transform: translateY(-5px);
}
.ai-blog-item i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}
.ai-blog-item h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

/* Comparison Section */
.comparison-section {
    padding: 0 2rem 5rem;
}
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.comparison-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}
.comparison-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.comparison-card ul {
    list-style: none;
}
.comparison-card li {
    padding: 0.5rem 0;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.comparison-card li i {
    color: #10b981;
    margin-top: 0.3rem;
}

/* Guarantee Banner */
.guarantee-banner {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 900px;
}
.guarantee-banner h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
}

/* Platform Section */
.platform-section {
    padding: 0 2rem 5rem;
}
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.platform-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.platform-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.platform-item.instagram i { color: #E4405F; }
.platform-item.facebook i { color: #1877F2; }
.platform-item.tiktok i { color: #000000; }
.platform-item.youtube i { color: #FF0000; }
.platform-item.linkedin i { color: #0A66C2; }
.platform-item.twitter i { color: #1DA1F2; }

/* Setup Process */
.setup-process {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5rem 2rem;
    margin-bottom: 5rem;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.process-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.process-item .step-number {
    background: #3b82f6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-hero h1 { font-size: 2.7rem; }
    .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.3rem; }
    .page-hero p { font-size: 1.1rem; }
    .plan-type-header h2 { font-size: 1.8rem; }
    .plan-price { font-size: 2.2rem; }
    .platform-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}
@media (max-width: 480px) {
    .page-hero { padding: 3rem 1rem; }
    .page-hero h1 { font-size: 2rem; }
    .pricing-section, .content-section, .comparison-section, .platform-section { padding-left: 1rem; padding-right: 1rem; }
    .pricing-grid, .comparison-grid { grid-template-columns: 1fr; }
    .plan-card-header, .plan-features, .plan-cta { padding-left: 1.5rem; padding-right: 1.5rem; }
}