/* --- block 1 --- */
.hero-sub { max-width: 720px; }

        /* ===== PRICING SECTION ===== */
        .pricing-section { background: var(--white); }
        .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 820px; margin: 0 auto; }
        .pricing-card {
            border-radius: 12px;
            padding: 40px 32px;
            position: relative;
            transition: all 0.3s;
        }
        /* Silver card */
        .pricing-card.silver-card {
            background: linear-gradient(145deg, #f8f9fa 0%, #e8eaed 40%, #f0f1f3 70%, #dcdfe3 100%);
            border: 2px solid #b8bcc2;
            box-shadow: 0 4px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
        }
        .pricing-card.silver-card:hover {
            border-color: #9ea3ab;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
            transform: translateY(-6px);
        }
        /* Gold card */
        .pricing-card.gold-card {
            background: linear-gradient(145deg, #fdf8ef 0%, #f5e6c4 40%, #faf0da 70%, #ebd5a0 100%);
            border: 2px solid #C9A961;
            box-shadow: 0 4px 16px rgba(201,169,97,0.15), inset 0 1px 0 rgba(255,255,255,0.6);
        }
        .pricing-card.gold-card:hover {
            border-color: #c49a2c;
            box-shadow: 0 8px 32px rgba(201,169,97,0.25), inset 0 1px 0 rgba(255,255,255,0.6);
            transform: translateY(-6px);
        }
        .pricing-badge {
            position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
            background: linear-gradient(135deg, #C9A961, #b8942e);
            color: var(--white);
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.08em; padding: 5px 16px; border-radius: 4px;
            box-shadow: 0 2px 8px rgba(201,169,97,0.3);
        }
        .pricing-icon {
            width: 50px; height: 50px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px;
        }
        .pricing-icon.silver { background: rgba(255,255,255,0.7); border: 1px solid rgba(158,158,158,0.25); }
        .pricing-icon.silver svg { color: #6b7280; }
        .pricing-icon.gold { background: rgba(255,255,255,0.6); border: 1px solid rgba(201,169,97,0.3); }
        .pricing-icon.gold svg { color: #b8942e; }
        .pricing-icon svg { width: 24px; height: 24px; }
        .pricing-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem; font-weight: 600;
            color: var(--black); margin-bottom: 6px;
        }
        .pricing-card .pricing-desc { font-size: 0.88rem; color: var(--section-text); margin-bottom: 20px; line-height: 1.6; }
        .pricing-price {
            font-family: var(--font-display);
            font-size: 2.4rem; font-weight: 700;
            color: var(--black); margin-bottom: 24px;
        }
        .pricing-price span { font-size: 1rem; font-weight: 400; color: #4b5563; }
        .pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
        .pricing-feature {
            display: flex; align-items: flex-start; gap: 10px;
            font-size: 0.88rem; color: var(--section-text); line-height: 1.6;
        }
        .pricing-feature svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
        .silver-card .pricing-feature.included svg { color: #6b7280; }
        .gold-card .pricing-feature.included svg { color: #b8942e; }
        .pricing-feature.excluded svg { color: var(--gray-300); }
        .pricing-card .btn-red { width: 100%; justify-content: center; }
        .gold-card .btn-red {
            background: linear-gradient(135deg, #C9A961, #b8942e) !important;
            box-shadow: 0 2px 8px rgba(201,169,97,0.3) !important;
        }
        .gold-card .btn-red:hover {
            background: linear-gradient(135deg, #c49a2c, #a6831e) !important;
            box-shadow: 0 4px 16px rgba(201,169,97,0.4) !important;
        }
        .pricing-card .btn-outline {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            width: 100%; padding: 15px 32px; border-radius: 6px;
            font-weight: 600; font-size: 0.95rem;
            border: 2px solid #9ea3ab; color: #4b5563;
            cursor: pointer; transition: all 0.25s;
            background: rgba(255,255,255,0.5);
        }
        .pricing-card .btn-outline:hover { border-color: #6b7280; color: #1f2937; background: rgba(255,255,255,0.8); }

        /* ===== PAYMENT METHODS BAR ===== */
        .payment-methods-bar {
            box-shadow: 0 4px 16px rgba(0,0,0,0.03);
            transition: all 0.25s;
            display: flex; align-items: center; justify-content: center; gap: 10px;
            margin-top: 32px;
            padding: 14px 28px;
            background: var(--gray-50);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            max-width: 420px;
            margin-left: auto; margin-right: auto;
        }
        .payment-methods-bar:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            transform: translateY(-2px);
        }
        .payment-methods-bar svg { color: var(--red); flex-shrink: 0; }
        .payment-methods-bar a {
            color: var(--red); font-weight: 700;
            font-size: 1rem;
            transition: color 0.2s;
        }
        .payment-methods-bar a:hover { color: var(--red-dark); text-decoration: underline; }

        /* ===== SAMPLES BAR ===== */
        .samples-bar {
            background: var(--gray-50);
            padding: 40px 0;
            border-top: 1px solid var(--gray-100);
            border-bottom: 1px solid var(--gray-100);
        }
        .samples-inner {
            display: flex; align-items: center; justify-content: space-between; gap: 30px;
            flex-wrap: wrap;
        }
        .samples-text h3 {
            font-family: var(--font-display);
            font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 4px;
        }
        .samples-text p { font-size: 0.92rem; color: var(--section-text); line-height: 1.6; }
        .samples-links { display: flex; gap: 12px; flex-wrap: wrap; }
        .sample-link {
            display: inline-flex; align-items: center; gap: 6px;
            font-size: 0.88rem; font-weight: 600; color: var(--red);
            padding: 10px 18px; border: 1px solid var(--gray-200);
            border-radius: 6px; transition: all 0.25s;
        }
        .sample-link:hover { border-color: var(--red); background: var(--red-glow); }
        .sample-link svg { width: 16px; height: 16px; }
        .reseller-note {
            text-align: center; font-size: 0.88rem; color: var(--section-text);
            margin-top: 20px;
        }
        .reseller-note a { color: var(--red); font-weight: 600; }
        .reseller-note a:hover { text-decoration: underline; }

        /* ===== FEATURES SECTION ===== */
        .features-section { background: var(--white); }
        .features-block { margin-bottom: 60px; }
        .features-block:last-child { margin-bottom: 0; }
        .features-block-header {
            display: flex; align-items: center; gap: 14px;
            margin-bottom: 28px; padding-bottom: 16px;
            border-bottom: 2px solid var(--red);
        }
        .features-block-icon {
            width: 44px; height: 44px; border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .features-block-icon.fb-red { background: rgba(51,51,51,0.08); }
        .features-block-icon.fb-gold { background: rgba(51,51,51,0.08); }
        .features-block-icon.fb-green { background: rgba(51,51,51,0.08); }
        .features-block-icon svg { width: 22px; height: 22px; }
        .features-block-header h3 {
            font-family: var(--font-display);
            font-size: 1.3rem; font-weight: 600; color: var(--black);
        }
        .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .feature-card {
            background: var(--gray-50); border-radius: 10px;
            padding: 28px 24px; transition: all 0.3s;
        }
        .feature-card:hover { 
            background: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,0.06); 
            transform: translateY(-4px);
        }
        .feature-card-icon {
            width: 40px; height: 40px; border-radius: 8px;
            background: var(--red-glow);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 14px;
        }
        .feature-card-icon svg { width: 20px; height: 20px; color: var(--red); }
        .feature-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
        .feature-card p { font-size: 0.88rem; color: var(--section-text); line-height: 1.65; }
        .feature-card p a { color: var(--red); font-weight: 500; }
        .feature-card p a:hover { text-decoration: underline; }
        .feature-card .detail-stars { display: flex; gap: 2px; margin-bottom: 6px; }
        .feature-card .detail-stars svg { width: 16px; height: 16px; fill: #C9A961; }

        /* ===== TESTIMONIALS CAROUSEL ===== */
        .testimonials-section { background: var(--off-white); padding: 50px 0; }
        .testimonials-carousel { position: relative; overflow: hidden; }
        .testimonials-track {
            display: flex; gap: 24px;
        }
        .testimonial-card {
            background: var(--white);
            border: 1px solid var(--gray-100);
            border-radius: 10px;
            padding: 30px 24px;
            display: flex; flex-direction: column;
            flex: 0 0 auto;
            box-sizing: border-box;
            transition: all 0.3s;
        }
        .testimonial-card:hover { 
            box-shadow: 0 8px 30px rgba(0,0,0,0.06); 
            transform: translateY(-2px);
        }
        .testimonial-quote {
            font-size: 0.92rem; color: var(--section-text);
            line-height: 1.7; flex: 1;
            margin-bottom: 20px; font-style: italic;
        }
        .testimonial-quote::before { content: '\201C'; font-size: 1.4rem; color: var(--red); margin-right: 2px; }
        .testimonial-quote::after { content: '\201D'; font-size: 1.4rem; color: var(--red); margin-left: 2px; }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .testimonial-avatar {
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--red-glow);
            display: flex; align-items: center; justify-content: center;
        }
        .testimonial-avatar svg { width: 20px; height: 20px; color: var(--red); }
        .testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--black); }
        .testimonial-role { font-size: 0.82rem; color: var(--section-text); }
        .testimonial-stars { display: flex; gap: 2px; margin-top: 4px; }
        .testimonial-stars svg { width: 14px; height: 14px; fill: #C9A961; }
        .carousel-controls {
            display: flex; align-items: center; justify-content: center;
            gap: 16px; margin-top: 32px;
        }
        .carousel-btn {
            width: 42px; height: 42px; border-radius: 50%;
            border: 1px solid var(--gray-200); background: var(--white);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.25s;
        }
        .carousel-btn:hover { border-color: var(--red); background: var(--red-glow); }
        .carousel-btn:hover svg { color: var(--red); }
        .carousel-btn svg { width: 18px; height: 18px; color: var(--gray-300); }
        .carousel-dots { display: flex; gap: 8px; }
        .carousel-dot {
            width: 10px; height: 10px; border-radius: 50%;
            background: var(--gray-200); border: none;
            cursor: pointer; transition: all 0.25s;
        }
        .carousel-dot.active { background: var(--red); transform: scale(1.2); }

        /* ===== POLICY TEMPLATES ===== */
        .templates-section { background: var(--white); }
        .templates-section .section-header { margin-bottom: 20px; }
        .templates-intro { font-size: 0.82rem; color: var(--section-text); line-height: 1.6; max-width: 800px; margin-bottom: 40px; }
        .templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
        .template-col {
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            border-radius: 10px;
            padding: 30px 24px;
            transition: all 0.3s;
        }
        .template-col:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            transform: translateY(-2px);
        }
        .template-col-header {
            display: flex; align-items: center; gap: 10px;
            margin-bottom: 20px; padding-bottom: 14px;
            border-bottom: 2px solid var(--red);
        }
        .template-col-header svg { width: 20px; height: 20px; color: var(--red); }
        .template-col-header h3 { font-size: 1rem; font-weight: 700; color: var(--black); }
        .template-sub {
            font-size: 0.8rem; font-weight: 700; color: var(--red);
            text-transform: uppercase; letter-spacing: 0.08em;
            margin: 20px 0 10px; padding-top: 16px;
            border-top: 1px solid var(--gray-100);
        }
        .template-sub:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
        .template-list { font-size: 0.82rem; color: var(--section-text); line-height: 1.9; }
        .template-more { display: none; }
        .template-toggle { display: none; }
        .template-toggle-label {
            display: inline-flex; align-items: center; gap: 4px;
            font-size: 0.82rem; font-weight: 600; color: var(--red);
            cursor: pointer; margin-top: 8px;
        }
        .template-toggle-label:hover { text-decoration: underline; }
        .template-toggle:checked ~ .template-more { display: block; }
        .template-toggle:checked ~ .template-toggle-label { display: none; }

        /* ===== PAYMENT OPTIONS ===== */
        .payment-section { background: var(--white); padding-top: 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
        .payment-card {
            background: var(--gray-50);
            border: 1px solid var(--gray-100);
            border-radius: 10px;
            padding: 28px 22px;
            transition: all 0.3s;
        }
        .payment-card:hover { 
            box-shadow: 0 8px 24px rgba(0,0,0,0.06); 
            transform: translateY(-4px);
        }
        .payment-card-icon {
            width: 42px; height: 42px; border-radius: 8px;
            background: var(--red-glow);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }
        .payment-card-icon svg { width: 20px; height: 20px; color: var(--red); }
        .payment-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
        .payment-card p { font-size: 0.88rem; color: var(--section-text); line-height: 1.65; }
        .payment-note {
            font-size: 0.95rem; color: var(--section-text); line-height: 1.7;
            padding: 16px 20px; background: var(--gray-50);
            border-radius: 8px; border: 1px solid var(--gray-100);
        }
        .payment-note strong { color: var(--black); }
        .payment-note a { color: var(--red); font-weight: 500; }
        .payment-note a:hover { text-decoration: underline; }
        .payment-form-title {
            font-size: 0.82rem; font-weight: 600; color: var(--black);
            margin: 16px 0 8px; text-transform: uppercase; letter-spacing: 0.05em;
        }
        .payment-select {
            width: 100%; padding: 10px 12px; border: 1px solid var(--gray-200);
            border-radius: 6px; font-size: 0.88rem; color: var(--section-text);
            background: var(--white); margin-bottom: 12px; cursor: pointer;
        }
        .payment-select:focus { outline: none; border-color: var(--red); }
        .payment-buy-btn {
            display: inline-flex; align-items: center; justify-content: center;
            width: 100%; padding: 12px 24px; border-radius: 6px;
            background: var(--red); color: var(--white);
            font-size: 0.9rem; font-weight: 600; border: none;
            cursor: pointer; transition: all 0.25s;
        }
        .payment-buy-btn:hover { background: var(--red-dark); }
        .payment-contact-link {
            display: inline-flex; align-items: center; gap: 6px;
            margin-top: 16px; font-size: 0.88rem; font-weight: 600;
            color: var(--red); transition: color 0.2s;
        }
        .payment-contact-link:hover { color: var(--red-dark); text-decoration: underline; }

        /* ===== TERMS ===== */
        .terms-section { background: var(--off-white); padding: 60px 0; }
        .terms-content { max-width: 820px; margin: 0 auto; }
        .terms-content h3 {
            font-family: var(--font-display);
            font-size: 1.4rem; font-weight: 700;
            color: var(--black); margin-bottom: 18px;
        }
        .terms-content ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .terms-content li {
            font-size: 0.95rem; color: var(--section-text); line-height: 1.75;
            padding-left: 20px; position: relative;
        }
        .terms-content li::before {
            content: ''; position: absolute; left: 0; top: 10px;
            width: 6px; height: 6px; border-radius: 50%;
            background: var(--red);
        }
        .terms-content li a { color: var(--red); font-weight: 500; }
        .terms-content li a:hover { text-decoration: underline; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .pricing-grid { grid-template-columns: 1fr 1fr; }
            .features-grid { grid-template-columns: 1fr 1fr; }
            .testimonials-grid { grid-template-columns: 1fr 1fr; }
            .templates-grid { grid-template-columns: 1fr; }
            .payment-grid { grid-template-columns: 1fr 1fr; }
            .samples-inner { flex-direction: column; text-align: center; }
            .samples-links { justify-content: center; }
        }
        @media (max-width: 768px) {
            .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
            .features-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .payment-grid { grid-template-columns: 1fr; }
        }
