/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: hsl(40, 20%, 97%);
    color: hsl(240, 5%, 25%);
    line-height: 1.6;
}

.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Container Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(246, 241, 237, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsl(40, 15%, 88%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-header.visible {
    transform: translateY(0);
}

.sticky-header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticky-header-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(340, 65%, 55%);
}

.sticky-header-subtitle {
    font-size: 0.875rem;
    color: hsl(240, 5%, 45%);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.6), 
        rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.hero-inner {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(189, 52, 99, 0.2);
    color: white;
    border: 1px solid rgba(189, 52, 99, 0.3);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-primary {
    color: hsl(340, 65%, 55%);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-price {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-price-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.hero-price-values {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.hero-price-old {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 1.5rem;
}

.hero-price-new {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.hero-price-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.hero-cta {
    margin-bottom: 1.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-icon {
    font-size: 1.25rem;
}

.btn-cta {
    background-color: hsl(145, 60%, 45%);
    color: white;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-text-mobile {
    display: inline;
}

.btn-text-desktop {
    display: none;
}

.btn-hero {
    background-color: hsl(145, 60%, 45%);
    color: white;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-4px);
}

.btn-full {
    width: 100%;
    background-color: hsl(145, 60%, 45%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-full:hover {
    transform: translateY(-2px);
}

.btn-final {
    background-color: hsl(145, 60%, 45%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1.5rem 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-final:hover {
    transform: translateY(-2px);
}

/* Countdown Section */
.countdown-section {
    padding: 3rem 0;
}

.countdown-box {
    background: linear-gradient(to right, 
        rgba(247, 184, 75, 0.2), 
        rgba(247, 184, 75, 0.1));
    border: 1px solid rgba(247, 184, 75, 0.3);
    border-radius: 0.5rem;
    padding: 2rem;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.countdown-icon {
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.countdown-label {
    font-weight: 600;
    color: hsl(240, 5%, 25%);
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    background-color: hsl(40, 18%, 95%);
    border: 1px solid hsl(40, 15%, 90%);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    min-width: 70px;
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(25, 85%, 60%);
}

.countdown-text {
    font-size: 0.75rem;
    color: hsl(240, 5%, 45%);
    margin-top: 0.25rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(25, 85%, 60%);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(240, 5%, 25%);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(240, 5%, 45%);
    max-width: 48rem;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background-color: hsl(40, 20%, 97%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    background-color: hsl(40, 18%, 95%);
    border: 1px solid hsl(40, 15%, 90%);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(189, 52, 99, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(240, 5%, 25%);
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: hsl(240, 5%, 45%);
    line-height: 1.75;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: hsl(40, 18%, 95%);
}

.pricing-card {
    background-color: hsl(40, 18%, 95%);
    border: 1px solid hsl(40, 15%, 90%);
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

.pricing-items {
    margin-bottom: 2rem;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid hsl(40, 15%, 88%);
    margin-bottom: 1.5rem;
}

.pricing-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pricing-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(88, 163, 118, 0.2);
    color: hsl(145, 60%, 45%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    font-weight: 700;
}

.pricing-info {
    flex: 1;
}

.pricing-item-title {
    font-weight: 600;
    font-size: 1.125rem;
    color: hsl(240, 5%, 25%);
    margin-bottom: 0.25rem;
}

.pricing-item-desc {
    color: hsl(240, 5%, 45%);
    font-size: 0.875rem;
}

.pricing-item-price {
    flex-shrink: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(240, 5%, 25%);
}

.pricing-total {
    border-top: 2px solid hsl(40, 15%, 88%);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pricing-total-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(240, 5%, 25%);
}

.pricing-total-old {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(240, 5%, 45%);
    text-decoration: line-through;
}

.pricing-total-today {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(145, 60%, 45%);
}

.pricing-total-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(145, 60%, 45%);
}

.pricing-savings {
    background: linear-gradient(to right, 
        rgba(88, 163, 118, 0.2), 
        rgba(88, 163, 118, 0.1));
    border: 1px solid rgba(88, 163, 118, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-savings-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(240, 5%, 25%);
}

.pricing-savings-percent {
    color: hsl(145, 60%, 45%);
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background-color: hsl(40, 20%, 97%);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.category-card {
    background-color: hsl(40, 18%, 95%);
    border: 1px solid hsl(40, 15%, 90%);
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.category-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.2), 
        transparent);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Instagram Section */
.instagram {
    padding: 4rem 0;
    background-color: hsl(40, 20%, 97%);
}

.instagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, 
        rgba(168, 85, 247, 0.1), 
        rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
}

.instagram-badge-icon {
    font-size: 1.25rem;
    color: rgb(168, 85, 247);
}

.instagram-badge-text {
    font-weight: 600;
    color: hsl(240, 5%, 25%);
}

.instagram-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.instagram-card {
    background-color: hsl(40, 18%, 95%);
    border: 1px solid hsl(40, 15%, 90%);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.instagram-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.instagram-header {
    background: linear-gradient(to right, rgb(168, 85, 247), rgb(236, 72, 153));
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instagram-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

.instagram-header-info {
    flex: 1;
}

.instagram-username {
    font-weight: 600;
    color: white;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified {
    background-color: rgb(59, 130, 246);
    color: white;
    border-radius: 50%;
    padding: 0 0.25rem;
    font-size: 0.75rem;
}

.instagram-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.instagram-icon {
    font-size: 1.25rem;
    color: white;
}

.instagram-messages {
    padding: 1.5rem;
    background-color: hsl(40, 18%, 95%);
}

.instagram-message {
    background-color: rgba(189, 52, 99, 0.1);
    border: 1px solid rgba(189, 52, 99, 0.2);
    border-radius: 1rem;
    border-bottom-left-radius: 0.25rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: hsl(240, 5%, 25%);
    line-height: 1.75;
}

.instagram-like {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    font-size: 0.75rem;
    color: hsl(240, 5%, 45%);
}

.instagram-footer {
    text-align: center;
    margin-top: 3rem;
}

.instagram-footer-text {
    font-size: 1.125rem;
    color: hsl(240, 5%, 45%);
    margin-bottom: 1rem;
}

.instagram-footer-text strong {
    font-weight: 600;
    color: hsl(240, 5%, 25%);
}

.instagram-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(340, 65%, 55%);
}

.instagram-footer-icon {
    font-size: 1.25rem;
}

.instagram-footer-link {
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: hsl(40, 18%, 95%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.testimonial-card {
    background-color: hsl(40, 18%, 95%);
    border: 1px solid hsl(40, 15%, 90%);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 4px solid rgba(189, 52, 99, 0.2);
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: hsl(240, 5%, 25%);
}

.testimonial-stars {
    color: hsl(25, 85%, 60%);
    font-size: 1rem;
}

.testimonial-text {
    color: hsl(240, 5%, 45%);
    line-height: 1.75;
    font-style: italic;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: hsl(40, 20%, 97%);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: hsl(40, 18%, 95%);
    border: 1px solid hsl(40, 15%, 90%);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(240, 5%, 25%);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: hsl(240, 5%, 45%);
    line-height: 1.75;
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(to bottom, 
        hsl(40, 18%, 95%), 
        hsl(40, 20%, 97%));
}

.final-cta-card {
    background: linear-gradient(to bottom right, 
        rgba(189, 52, 99, 0.05), 
        rgba(189, 52, 99, 0.1));
    border: 1px solid rgba(189, 52, 99, 0.2);
    border-radius: 0.5rem;
    padding: 3rem 2rem;
    text-align: center;
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(88, 163, 118, 0.2);
    color: hsl(145, 60%, 45%);
    border: 1px solid rgba(88, 163, 118, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.final-cta-badge-icon {
    font-size: 1.25rem;
}

.final-cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(240, 5%, 25%);
    margin-bottom: 1.5rem;
}

.final-cta-text {
    font-size: 1.125rem;
    color: hsl(240, 5%, 45%);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.final-cta-price {
    margin-bottom: 2rem;
}

.final-cta-price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.final-cta-price-old {
    font-size: 1.5rem;
    color: hsl(240, 5%, 45%);
    text-decoration: line-through;
}

.final-cta-arrow {
    font-size: 1.5rem;
    color: hsl(240, 5%, 45%);
    display: none;
}

.final-cta-price-new {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(340, 65%, 55%);
}

.final-cta-price-save {
    font-size: 0.875rem;
    color: hsl(240, 5%, 45%);
}

.final-cta-price-label {
    font-weight: 600;
    color: hsl(340, 65%, 55%);
    margin-bottom: 1.5rem;
}

.final-cta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: hsl(240, 5%, 45%);
}

/* Footer */
.footer {
    background-color: hsl(40, 18%, 95%);
    border-top: 1px solid hsl(40, 15%, 88%);
    padding: 2rem 1rem;
}

.footer-text {
    text-align: center;
    color: hsl(240, 5%, 45%);
    font-size: 0.875rem;
}

.footer-subtext {
    text-align: center;
    color: hsl(240, 5%, 45%);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .btn-text-mobile {
        display: none;
    }
    
    .btn-text-desktop {
        display: inline;
    }
    
    .countdown-item {
        padding: 1rem;
        min-width: 90px;
    }
    
    .countdown-number {
        font-size: 3rem;
    }
    
    .final-cta-price-row {
        flex-direction: row;
    }
    
    .final-cta-arrow {
        display: block;
    }
    
    .final-cta-price-new {
        font-size: 3.75rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sticky-header-subtitle {
        display: inline;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 8rem 1rem;
    }
    
    .section-title {
        font-size: 3.75rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .final-cta-title {
        font-size: 3.75rem;
    }
    
    .final-cta-price-new {
        font-size: 4.5rem;
    }
}
