:root {
    --primary-color: #0ea5e9;
    --primary-hover: #0284c7;
    --bg-color: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #475569;
    --accent-light: #e0f2fe;
    --accent-blue: #38bdf8;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo i {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600 !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-main);
    cursor: pointer;
}

.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-why {
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    margin: 0.5rem 0;
}

.hero-why h2 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.hero-why p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.hero-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.icon-wrapper {
    background-color: var(--accent-light);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-features li:hover .icon-wrapper {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
    width: fit-content;
    overflow: hidden;
    position: relative;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(14, 165, 233, 0.4);
}

.cta-icon {
    background: rgba(255,255,255,0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(4px);
}

/* Image Section */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeLeft 1s ease-out forwards;
    opacity: 0;
    transform: translateX(20px);
    animation-delay: 0.2s;
}

.image-backdrop {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--accent-light), #ffffff);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

.hero-image {
    width: 100%;
    max-width: 550px;
    max-height: 70vh;
    object-fit: contain;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-out;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    border: 1px solid var(--border-color);
}

.floating-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.badge-top {
    top: 5%;
    right: -10%;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: 10%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

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

/* --- Layout Utilities & New Sections --- */

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

main section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-header .subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Specifications Table */
.specs-section {
    background-color: var(--bg-color);
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.specs-table th, 
.specs-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table thead th {
    background-color: var(--accent-light);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.specs-table tbody th {
    font-weight: 600;
    color: var(--text-main);
    width: 25%;
    background-color: rgba(248, 250, 252, 0.5);
}

.specs-table tbody tr:last-child th,
.specs-table tbody tr:last-child td {
    border-bottom: none;
}

.specs-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Features Grid */
.features-section {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-light);
    color: var(--primary-color);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* How Tundra Freeze Works */
.how-it-works-section {
    background-color: var(--bg-color);
}

.works-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.works-content p {
    margin-bottom: 1.5rem;
}

.works-content p:last-child {
    margin-bottom: 0;
}

/* How to Use Section */
.how-to-use-section {
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem 2rem;
    list-style: none;
    counter-reset: steps-counter;
}

.step-card {
    background: var(--bg-color);
    padding: 2.5rem 2rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
    border: 4px solid var(--bg-color);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Build Quality */
.build-section {
    background-color: var(--bg-color);
}

.build-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.build-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
}

.build-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.build-content p:last-child {
    margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--white);
}

.reviews-section .subtitle {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.05);
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author strong {
    display: block;
    color: var(--text-main);
    font-size: 1.05rem;
}

.review-author span {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-color);
}

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

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 20px -3px rgba(14, 165, 233, 0.15);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.pricing-image {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 1.5rem auto;
    display: block;
    mix-blend-mode: multiply;
}

.pricing-card .price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.buy-now-btn {
    display: inline-block;
    width: 100%;
    background: var(--text-main);
    color: var(--white);
    padding: 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.buy-now-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.pricing-card.popular .buy-now-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3);
}

.pricing-card.popular .buy-now-btn:hover {
    box-shadow: 0 15px 20px -3px rgba(14, 165, 233, 0.4);
}

.pricing-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pricing-note p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

.pricing-note i {
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

/* Details Section */
.details-section {
    background-color: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.detail-box {
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.detail-box h2 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 700;
}

.detail-box p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.detail-box ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.detail-box ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.detail-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    top: 2px;
}

.detail-small {
    font-size: 0.9rem !important;
    font-style: italic;
    margin-top: 1.5rem;
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover i {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* FAQ Active State */
.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.6s ease-in-out;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px -3px rgba(14, 165, 233, 0.15);
}

/* Assurance & Contact Section */
.assurance-section {
    background-color: var(--white);
    padding-top: 2rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-hover);
}

.last-updated {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
.site-footer {
    background-color: var(--text-main);
    color: var(--white);
    padding: 5rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Page Content / Prose */
.page-content {
    padding: 8rem 0 4rem;
    background-color: var(--bg-color);
    min-height: 100vh;
}

.prose-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.page-title {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-align: center;
}

.prose {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.prose h2 {
    color: var(--text-main);
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
}

.prose h3 {
    color: var(--text-main);
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose ul, .prose ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.prose a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.prose a:hover {
    text-decoration: underline;
}

/* Floating Buy Button */
.floating-buy-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-buy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(14, 165, 233, 0.5);
    color: var(--white);
}

.floating-buy-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }
    
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child a {
        border-bottom: none;
        padding: 1.5rem 1rem;
    }

    .nav-menu li a.nav-cta {
        display: inline-block !important;
        border-radius: 3rem;
        margin: 0.5rem auto 1.5rem;
        padding: 1rem 2rem;
        width: 85%;
        max-width: 320px;
    }
    
    .hero-content {
        align-items: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .hero-why {
        text-align: left;
    }

    .badge-top {
        right: 0;
        top: 0;
    }

    .badge-bottom {
        left: 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .prose-card {
        padding: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
    .cta-text {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .build-content {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }
    
    main section {
        padding: 3rem 0;
    }
    
    .specs-table th, 
    .specs-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-features li {
        font-size: 0.9rem;
    }
    
    .floating-badge {
        display: none;
    }
}
