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

:root {
	--orange-300: #fa8633;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-100: #ffedd5;
    --orange-700: #c2410c;

    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-100: #dbeafe;

    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;

    --green-600: #16a34a;
    --green-100: #dcfce7;

    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
    background-color: var(--white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.container-narrow-center {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-logo {
    width: 2rem;
    height: 2rem;
    color: var(--orange-500);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

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

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--gray-600);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gray-900);
}

.btn-primary-small {
    padding: 0.625rem 1.5rem;
    background-color: var(--orange-500);
    color: var(--white);
    border-radius: 0.375rem;
    transition: background-color 0.3s;
}

.btn-primary-small:hover {
    background-color: var(--orange-600);
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, #dbeafe, var(--white), #ffedd5);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--orange-100);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: var(--orange-600);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--orange-700);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--orange-500);
    color: var(--white);
    border-radius: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--orange-600);
    transform: scale(1.02);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-secondary:hover {
    background-color: var(--gray-50);
    transform: scale(1.02);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
}

.stat-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: var(--green-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--green-600);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Sections */
.specs-section,
.highlights-section,
.features-section,
.table-section {
    padding: 6rem 0;
}

.specs-section {
    background-color: var(--white);
}

.highlights-section {
    background-color: var(--gray-50);
}

.features-section {
    background-color: var(--white);
}

.table-section {
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spec-card {
    padding: 2rem;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.spec-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.spec-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.spec-icon-wrapper.orange {
    background-color: var(--orange-100);
}

.spec-icon-wrapper.blue {
    background-color: var(--blue-100);
}

.spec-icon {
    width: 1.75rem;
    height: 1.75rem;
}

.spec-icon-wrapper.orange .spec-icon {
    color: var(--orange-600);
}

.spec-icon-wrapper.blue .spec-icon {
    color: var(--blue-600);
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.spec-detail {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

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

.highlight-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: var(--blue-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.highlight-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--blue-600);
}

.highlight-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.highlight-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--gray-50);
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.feature-item:hover {
    background-color: var(--gray-100);
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: var(--orange-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--orange-600);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--gray-600);
}

.features-image {
    position: relative;
}

.image-container-feature {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    background-color: var(--orange-500);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-badge-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-badge-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Spec Table */
.spec-table {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    transition: background-color 0.3s;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    background-color: var(--gray-50);
}

@media (min-width: 768px) {
    .spec-row {
        grid-template-columns: 1fr 1fr;
    }
}

.spec-row-label {
    font-weight: 500;
    color: var(--gray-900);
}

.spec-row-value {
    color: var(--gray-600);
    font-family: 'Courier New', monospace;
}

@media (min-width: 768px) {
    .spec-row-value {
        text-align: right;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600));
    padding: 6rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--orange-600);
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    background-color: var(--gray-100);
    transform: scale(1.02);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--orange-500);
}

.footer-logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-heading {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links button {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color 0.3s;
    text-align: left;
}

.footer-links button:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--white);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.7s ease-out forwards;
}

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

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Intersection Observer will handle these */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.7s ease-out forwards;
}
