* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --accent: #10b981;
    --accent-hover: #059669;
    --border: #e0e0e0;
    --success: #28a745;
    --warning: #ffc107;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 8px var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo with tea leaf */
.logo a.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.25s, transform 0.2s;
}

.logo a.logo-link:hover {
    color: var(--accent);
}

.logo a.logo-link:hover .logo-leaf {
    color: var(--accent);
    transform: rotate(-8deg) scale(1.05);
}

.logo-leaf {
    width: 28px;
    height: auto;
    color: var(--accent);
    flex-shrink: 0;
    transition: color 0.25s, transform 0.25s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-family: Georgia, 'Times New Roman', serif;
}

.logo a:not(.logo-link) {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-primary {
    background: linear-gradient(-45deg, #10b981, #059669, #34d399, #10b981);
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    animation-duration: 1.5s;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover span {
    background-color: var(--accent);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    height: 400px;
    background-color: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-container::before {
    content: "Изображение продукта";
    position: absolute;
    color: var(--text-secondary);
    font-size: 0.9rem;
    z-index: 1;
}

.hero-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-card);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 4px var(--shadow);
    transition: all 0.3s;
}

.feature-item:hover {
    box-shadow: 0 4px 12px var(--shadow-hover);
    transform: translateY(-2px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.btn-large {
    display: inline-block;
    background: linear-gradient(-45deg, #10b981, #059669, #34d399, #10b981);
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.btn-large:hover {
    animation-duration: 1.5s;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.guarantee-badges span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image-container::before {
    content: "Фото";
    position: absolute;
    color: var(--text-secondary);
    font-size: 0.8rem;
    z-index: 1;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--text-secondary);
    font-style: italic;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px var(--shadow);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-hover);
    border-color: var(--accent);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: var(--accent);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Ingredients Section */
.ingredients-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.ingredients-title {
    font-size: 1.8rem;
    text-align: center;
    margin: 3rem 0 2rem;
    font-weight: 600;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ingredient-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ingredient-card:hover {
    transform: translateY(-3px);
}

.ingredient-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s;
}

.ingredient-image-container:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px var(--shadow-hover);
    transform: scale(1.05);
}

.ingredient-image-container::before {
    content: "Фото";
    position: absolute;
    color: var(--text-secondary);
    font-size: 0.8rem;
    z-index: 1;
}

.ingredient-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.ingredient-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.ingredient-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.badge-item svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s;
}

.step-card:hover {
    box-shadow: 0 8px 24px var(--shadow-hover);
    transform: translateY(-4px);
}

.step-image-container {
    width: 100%;
    height: 200px;
    background-color: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-image-container::before {
    content: "Изображение";
    position: absolute;
    color: var(--text-secondary);
    font-size: 0.85rem;
    z-index: 1;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.customer-service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.customer-service svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: 0 8px 24px var(--shadow-hover);
    transform: translateY(-4px);
}

.review-image-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.review-image-container::before {
    content: "Фото";
    position: absolute;
    color: var(--text-secondary);
    font-size: 0.7rem;
    z-index: 1;
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header h4 {
    color: var(--accent);
    font-size: 1.1rem;
}

.review-stars {
    color: var(--warning);
    font-size: 1.2rem;
}

.review-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-likes {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s;
    user-select: none;
}

.review-likes:hover {
    opacity: 0.8;
}

.review-likes.liked .like-icon {
    fill: #e74c3c !important;
    color: #e74c3c !important;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #e9ecef 100%);
    border-top: 1px solid var(--border);
    padding: 4rem 0 1rem;
    box-shadow: 0 -2px 8px var(--shadow);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-link {
    color: var(--text-primary);
}

.footer-logo .logo-link:hover {
    color: var(--accent);
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-column p a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column p a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.footer-disclaimer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 2rem 0;
}

.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.payment-methods img {
    height: 30px;
    width: auto;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 6px;
    background-color: var(--bg-secondary);
    transition: all 0.3s;
    cursor: pointer;
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow);
}

.payment-icon img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.payment-icon:hover img {
    transform: scale(1.05);
}

/* Form Styles */
.form-container {
    max-width: 700px;
    margin: 3rem auto;
    background-color: var(--bg-card);
    padding: 3.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    cursor: pointer;
}

.form-group input[type="file"]::-webkit-file-upload-button {
    background-color: var(--accent);
    color: var(--text-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 1rem;
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
    background-color: var(--accent-hover);
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkout Page */
.checkout-container {
    max-width: 900px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.checkout-form {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px var(--shadow);
}

.checkout-summary {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 2px 8px var(--shadow);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.checkout-product-image-container {
    width: 80px;
    height: 80px;
    background-color: var(--bg-secondary);
    border: 2px dashed var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.checkout-product-image-container::before {
    content: "Фото";
    position: absolute;
    color: var(--text-secondary);
    font-size: 0.7rem;
    z-index: 1;
}

.checkout-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

/* Tracking Page */
.tracking-container {
    max-width: 700px;
    margin: 3rem auto;
    background-color: var(--bg-card);
    padding: 3.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 4px 16px var(--shadow);
}

.tracking-form {
    margin-top: 2rem;
}

/* FAQ Page */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px var(--shadow);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px var(--shadow-hover);
    border-color: var(--accent);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-image-container {
        height: 300px;
        order: -1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .ingredients-grid,
    .steps-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


.pt-cus {padding:140px 60px 100px;background:#ffffff;color:#222;border:1px solid #e8e8e8;border-radius:8px;box-shadow:0 10px 30px rgba(0,0,0,0.06);}
@media(max-width:776px){.pt-cus{padding:90px 25px 70px;border-radius:6px;}}
.pt-cus h1,.pt-cus h2{font-family:'Inter',system-ui,sans-serif;color:#111;font-weight:600;letter-spacing:-0.5px;}
.pt-cus h1{font-size:2.8rem;border-bottom:2px solid #e8e8e8;padding-bottom:12px;margin-bottom:32px;}
.pt-cus h2{font-size:2rem;padding-left:16px;border-left:4px solid #333;}
.pt-cus p,.pt-cus li{font-family:'Inter',system-ui,sans-serif;font-size:1.1rem;line-height:1.75;color:#444;}
.pt-cus li{padding-left:20px;position:relative;}
.pt-cus li::before{content:'•';position:absolute;left:0;color:#666;}
.pt-cus a{color:#222;border-bottom:1px solid #999;transition:.2s;}
.pt-cus a:hover{border-color:#000;color:#000;}
