/* The Lazy Teen - CSS Styles */
/* Mobile-first responsive design */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #2C2C2C;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --primary-green: #A8E6A3;
    --secondary-beige: #F5F1E8;
    --soft-black: #2C2C2C;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
    --accent: #7DD3C0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-small: 8px;
    --transition: all 0.3s ease-in-out;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

p {
    margin-bottom: 16px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(168, 230, 163, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo h1 {
    font-size: 24px;
    color: var(--primary-green);
    margin: 0;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    color: var(--soft-black);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-green);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--soft-black);
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(168, 230, 163, 0.2);
}

/* Buttons */
.cta-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius-small);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: #6BC4A8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.product-btn, .kit-btn {
    background: var(--primary-green);
    color: var(--soft-black);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-small);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.product-btn:hover, .kit-btn:hover {
    background: #95D990;
    transform: translateY(-1px);
}

.quiz-btn {
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-small);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.quiz-btn.primary {
    background: var(--accent);
    color: white;
}

.quiz-btn.secondary {
    background: var(--light-gray);
    color: var(--soft-black);
}

.quiz-btn:hover {
    transform: translateY(-1px);
}

.quiz-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Hero Section */
.hero {
    padding: 120px 16px 64px;
    background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--light-gray) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 48px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--soft-black);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image {
    max-width: 400px;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Sections */
section {
    padding: 64px 0;
}

.page-header {
    padding: 120px 0 64px;
    background: var(--light-gray);
    text-align: center;
}

.page-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--soft-black);
}

/* Why We Exist Section */
.why-exist {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: var(--soft-black);
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light-gray);
}

.product-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 20px;
    color: var(--soft-black);
    margin-bottom: 8px;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--soft-black);
    margin-bottom: 16px;
}

/* Quiz Teaser */
.quiz-teaser {
    background: var(--primary-green);
    text-align: center;
    color: var(--soft-black);
}

.quiz-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.quiz-content p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials {
    background: var(--light-gray);
}

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

.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.testimonial-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--light-gray);
}

.testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 8px;
    color: var(--soft-black);
    flex-grow: 1;
}

.testimonial-author {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-top: auto;
}

/* Shop Page Styles */
.filters {
    padding: 32px 0;
    background: var(--light-gray);
}

.filter-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-green);
    background: white;
    color: var(--soft-black);
    border-radius: var(--border-radius-small);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-green);
    color: var(--soft-black);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 8px;
}

/* Kit Styles */
.kits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.kit-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.kit-card.featured {
    border: 2px solid var(--accent);
}

.kit-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.kit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--light-gray);
}

.kit-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    font-size: 12px;
    font-weight: 600;
}

.kit-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kit-name {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--soft-black);
}

.kit-description {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.kit-includes {
    margin-bottom: 24px;
}

.kit-includes h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--soft-black);
}

.kit-includes ul {
    list-style: none;
    padding: 0;
}

.kit-includes li {
    padding: 4px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.kit-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

.kit-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.kit-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--soft-black);
}

.kit-original {
    color: #999;
    text-decoration: line-through;
}

.kit-savings {
    background: var(--primary-green);
    color: var(--soft-black);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Kit Benefits */
.kit-benefits {
    background: var(--light-gray);
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    color: var(--soft-black);
    margin-bottom: 16px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

/* Quiz Styles */
.quiz-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.quiz-start,
.quiz-questions,
.quiz-results {
    padding: 48px 32px;
}

.quiz-intro {
    text-align: center;
}

.quiz-intro h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--soft-black);
}

.quiz-intro p {
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.quiz-progress {
    margin-bottom: 32px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 14px;
    color: #666;
}

.question-container {
    margin-bottom: 32px;
}

.question-title {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--soft-black);
}

.quiz-options {
    display: grid;
    gap: 12px;
}

.quiz-option {
    padding: 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.quiz-option:hover {
    border-color: var(--primary-green);
}

.quiz-option.selected {
    border-color: var(--accent);
    background: rgba(125, 211, 192, 0.1);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.quiz-navigation button {
    flex: 1;
}

.results-content {
    text-align: center;
}

.routine-type {
    background: var(--light-gray);
    padding: 24px;
    border-radius: var(--border-radius-small);
    margin-bottom: 32px;
}

.routine-type h3 {
    color: var(--soft-black);
    margin-bottom: 8px;
}

.routine-type p {
    color: #666;
}

.recommended-products {
    margin-bottom: 32px;
}

.quiz-actions {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

/* About Page Styles */
.about-story {
    background: var(--light-gray);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--soft-black);
}

.story-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-image {
    text-align: center;
}

.story-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-mission {
    text-align: center;
}

.mission-statement {
    font-size: 20px;
    color: var(--soft-black);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.mission-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.mission-point {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mission-point h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--soft-black);
}

.mission-point p {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.about-timeline {
    background: var(--light-gray);
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.timeline-year {
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--soft-black);
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

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

.value-card {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    color: var(--soft-black);
    margin-bottom: 16px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

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

.team-member {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    background: var(--light-gray);
}

.team-member h3 {
    color: var(--soft-black);
    margin-bottom: 8px;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.about-contact {
    background: var(--light-gray);
    text-align: center;
}

.contact-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--soft-black);
}

.contact-content p {
    color: #666;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item {
    color: var(--soft-black);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.cart-modal.active {
    display: flex;
}

.cart-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--light-gray);
}

.cart-header h3 {
    margin: 0;
    color: var(--soft-black);
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.cart-items {
    padding: 24px;
    min-height: 200px;
}

.empty-cart {
    text-align: center;
    color: #666;
    font-style: italic;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    margin: 0 0 4px 0;
    color: var(--soft-black);
}

.cart-item-price {
    color: #666;
    font-size: 14px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #FF6B6B;
    cursor: pointer;
    font-size: 14px;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--light-gray);
}

.cart-total {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
    color: var(--soft-black);
}

.checkout-btn {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 16px;
    border-radius: var(--border-radius-small);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: #6BC4A8;
}

/* Footer */
.footer {
    background: var(--soft-black);
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    color: var(--primary-green);
    margin-bottom: 8px;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #444;
    color: #ccc;
}

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

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    .hero {
        flex-direction: row;
        text-align: left;
        padding: 120px 32px 64px;
    }
    
    .hero-content {
        margin-bottom: 0;
        margin-right: 48px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mission-points {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .story-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .quiz-actions {
        flex-direction: row;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    body {
        font-size: 18px;
        line-height: 1.6;
    }
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    section {
        padding: 80px 0;
    }
    
    .page-header {
        padding: 140px 0 80px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.product-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

