/* ----- Global Styles & Variables (Neo-Swiss Red/White) ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&family=Outfit:wght@400;700&display=swap');

:root {
    /* Palette: Red & White Swiss Style */
    --color-primary: #D32F2F;
    /* Vivid Red */
    --color-primary-dark: #B71C1C;
    /* Deep Red */
    --color-primary-light: #FFEBEE;
    /* Very light red for backgrounds */
    --color-white: #FFFFFF;
    --color-bg: #FFE5E5;
    /* Very light red */
    --color-text: #2E2E2E;
    /* Softer Black */
    --color-text-muted: #666666;
    --color-border: #E5E7EB;

    --font-heading: 'Inter', sans-serif;
    /* Swiss style often uses Helvetica/Inter */
    --font-body: 'Inter', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(211, 47, 47, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ----- Layout ----- */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.max-width-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ----- Header ----- */
.header {
    background: var(--color-white);
    /* Reverted background to solid white */
    backdrop-filter: none;
    /* Removed backdrop-filter */
    border-bottom: 1px solid var(--color-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.header nav a {
    margin-left: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}

.header nav a:hover {
    color: var(--color-primary);
}

/* ----- Hero Section ----- */
#main-content {
    padding-top: 80px;
    /* Header height */
}

.hero-section {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-bg);
}

.hero-badge {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlight text style (Marker effect) */
.highlight-text {
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 15px;
    background-color: var(--color-primary-light);
    z-index: -1;
    opacity: 0.7;
    transform: rotate(-2deg);
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    background-color: var(--color-primary);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: var(--color-primary-dark);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.4);
}

.cta-subtext {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.social-proof {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #FFB703;
    /* Gold for stars */
    font-size: 1.2rem;
}

/* ----- Feature Sections (Simplified Swiss Grid) ----- */
.section-common {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card-feature {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform 0.3s;
    text-align: center;
}

.card-feature:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.card-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-feature p {
    color: var(--color-text-muted);
}

/* ----- Quiz Container (Funnel) ----- */
.quiz-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background-color: var(--color-bg);
}

.quiz-container {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 600px;
    position: relative;
    border: 1px solid var(--color-border);
}

.progress-container {
    margin-bottom: 2.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: var(--color-border);
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--color-primary);
    border-radius: 100px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-header {
    margin-bottom: 2rem;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.step-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Options Grid / Buttons */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

@media(min-width: 500px) {
    .options-grid.cols-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.btn-option {
    background: var(--color-bg);
    border: 2px solid transparent;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    text-align: left;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-option:hover {
    background: var(--color-white);
    border-color: #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-option.selected {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

/* Form Inputs */
.input-group {
    margin-top: 1.5rem;
}

.input-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.3rem;
}

/* Nav Buttons */
.quiz-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.btn-nav {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-back {
    background: transparent;
    color: var(--color-text-muted);
}

.btn-back:hover {
    color: var(--color-text);
    background: #f0f0f0;
}

.btn-next {
    background: var(--color-primary);
    color: white;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.btn-next:hover {
    background: var(--color-primary-dark);
}

/* Utilities */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- Checkout Styles ----- */
.checkout-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background-color: var(--color-bg);
}

.checkout-window {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
    /* Wider for 2 cols */
    overflow: hidden;
    margin-top: 60px;
    /* Clear header */
}

.checkout-header-bar {
    background: var(--color-primary);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.secure-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.checkout-header-bar h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media(min-width: 768px) {
    .checkout-grid {
        grid-template-columns: 4fr 5fr;
        /* Sidebar smaller than form */
    }
}

/* Left Column: Summary */
.col-summary {
    background: #f9f9f9;
    padding: 2rem;
    border-right: 1px solid #eee;
}

.product-card-checkout {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.product-image {
    width: 60px;
    height: 60px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.product-info p {
    font-size: 0.85rem;
    color: #666;
}

.product-price {
    margin-left: auto;
    text-align: right;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
}

.new-price {
    display: block;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.bonuses-list {
    margin-bottom: 2rem;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #333;
}

.bonus-item .check {
    color: green;
}

.badge-free {
    display: inline-block;
    background: #4CAF50;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    font-weight: 700;
}

.total-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 2rem;
}

.big-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.testimonial-mini {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    font-size: 0.9rem;
    color: #555;
    border-left: 3px solid var(--color-primary);
}

.testimonial-mini .author {
    margin-top: 0.5rem;
    font-weight: 600;
    font-style: normal;
    font-size: 0.8rem;
    text-align: right;
}

/* Right Column: Payment */
.col-payment {
    padding: 2rem;
}

.col-payment h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.payment-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pay-tab {
    flex: 1;
    border: 2px solid #ddd;
    background: white;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.2s;
}

.pay-tab.active {
    border-color: #2E7D32;
    /* Green for payment focus */
    background: #E8F5E9;
    color: #1B5E20;
}

.best-choice {
    position: absolute;
    top: -10px;
    right: -5px;
    background: #FF9800;
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
}

.pix-instruction {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #555;
}

.btn-copy-pix {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    font-weight: 600;
    color: var(--color-primary);
}

.btn-finish {
    font-size: 1.2rem;
    padding: 1.2rem;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    /* Green shadow */
}

.btn-finish:hover {
    background: #1B5E20 !important;
    transform: translateY(-2px);
}

.trust-seals {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #777;
    flex-wrap: wrap;
}

.trust-seals span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: white;
    padding: 3rem 0;
    margin-top: auto;


    text-align: center;
}

/* ----- New Pricing Layout ----- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    background: #FFFBFB;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    margin: 1rem 0 0.5rem;
}

.price-period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
    list-style: none;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

/* ----- Testimonials Section ----- */
.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.testimonial-text {
    font-size: 0.95rem;
    color: #444;
    font-style: italic;
    line-height: 1.6;
}

/* ----- FAQ Section ----- */
.faq-section {
    background: var(--color-bg);
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 400;
    transition: transform 0.3s;
}

.faq-item details[open] summary::after {
    transform: rotate(45deg);
}

.faq-item details[open] summary {
    border-bottom: 1px solid var(--color-border);
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.faq-answer {
    padding: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ----- Perfect For Section ----- */
.perfect-for-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 480px) {
    .perfect-for-grid {
        gap: 1rem;
    }

    .perfect-item {
        width: 45%;
        /* 2 per row on mobile */
    }
}

/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.perfect-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    /* Card Styling */
    width: 120px;
    height: 120px;
    background: white;
    border: 2px solid var(--color-primary);
    /* Red Border */
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 10px;

    opacity: 1;
    /* Visible by default */

    /* Animation on Card */
    animation: float 3s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.perfect-circle {
    /* Icon Only */
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    /* No circle border */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: none;
    padding: 0;

    animation: none;
    /* No double animation */
}

/* Red Border Update - REMOVED, now on item */

/* Stagger the float animation on the ITEM */
.perfect-item:nth-child(1) {
    animation-delay: 0s;
}

.perfect-item:nth-child(2) {
    animation-delay: 0.5s;
}

.perfect-item:nth-child(3) {
    animation-delay: 1.0s;
}

.perfect-item:nth-child(4) {
    animation-delay: 1.5s;
}

.perfect-item:nth-child(5) {
    animation-delay: 0.2s;
}

.perfect-item:nth-child(6) {
    animation-delay: 0.7s;
}

.perfect-item:nth-child(7) {
    animation-delay: 1.2s;
}

/* Mobile Layout Fix: Side-by-side Grid */
@media (max-width: 480px) {
    .perfect-for-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 columns strictly */
        gap: 0.8rem;
        padding: 0 1rem;
    }

    .perfect-item {
        width: 100%;
        /* Fill the grid cell */
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: none;
        padding: 0.8rem;
    }

    .perfect-label {
        font-size: 0.85rem;
    }
}

.perfect-item:hover {
    transform: translateY(-5px);
    background-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.perfect-item:hover .perfect-circle,
.perfect-item:hover .perfect-label {
    filter: brightness(0) invert(1);
    color: white;
}

.perfect-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
}

/* Entrance Delays */
.perfect-item:nth-child(1).animate-in {
    animation-delay: 0.0s;
}

.perfect-item:nth-child(2).animate-in {
    animation-delay: 0.1s;
}

.perfect-item:nth-child(3).animate-in {
    animation-delay: 0.2s;
}

.perfect-item:nth-child(4).animate-in {
    animation-delay: 0.3s;
}

.perfect-item:nth-child(5).animate-in {
    animation-delay: 0.4s;
}

.perfect-item:nth-child(6).animate-in {
    animation-delay: 0.5s;
}

.perfect-item:nth-child(7).animate-in {
    animation-delay: 0.6s;
}

/* ----- Mobile Responsiveness ----- */
@media (max-width: 768px) {
    #main-content {
        padding-top: 100px;
        /* Increased padding for mobile */
    }

    .hero-title {
        font-size: 2.5rem;
        padding-top: 3rem;
        /* Extra space for mobile header */
    }

    .header-inner {
        height: auto;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        margin-left: 0 !important;
        height: 60px !important;
    }

    .header nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .header nav a {
        margin-left: 0;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .card-feature,
    .pricing-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ----- Floating WhatsApp Button ----- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #777;
    background-color: #128C7E;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

/* ----- Social Proof Notification ----- */
#notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-notification {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
    border-left: 4px solid var(--color-primary);
    animation: slideInLeft 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.5s;
}

.social-notification.hide-out {
    transform: translateX(-120%);
    opacity: 0;
}

.notif-icon {
    background: var(--color-primary-light);
    color: var(--color-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notif-content p {
    font-size: 0.85rem;
    color: var(--color-text);
    line-height: 1.3;
    margin: 0;
}

.notif-time {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 2px;
    display: block;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}