/* Swift Launch - Sleek Product Landing CSS */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700;900&family=Inter:wght@400;600&display=swap');

:root {
    --swift-primary: #ff4d00;
    --swift-dark: #0a0a0a;
    --swift-gray: #222222;
    --swift-text-gray: #888888;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.8, 0, 0.2, 1);
}

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

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

h1, h2, h3, .unbounded {
    font-family: 'Unbounded', sans-serif;
    text-transform: uppercase;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.swift-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.swift-hero h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 30px;
}

.swift-hero p {
    font-size: 1.25rem;
    color: var(--swift-text-gray);
    margin-bottom: 50px;
}

.product-showcase {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 60%;
    z-index: 1;
}

.product-showcase img {
    width: 100%;
    filter: drop-shadow(0 50px 100px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.swift-hero:hover .product-showcase img {
    transform: scale(1.05) rotate(5deg);
}

/* Section Common */
.section-padding {
    padding: 140px 0;
}

.section-header {
    margin-bottom: 100px;
}

.section-header h2 {
    font-size: 4rem;
}

/* Features List */
.features-list {
    border-top: 1px solid var(--swift-gray);
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--swift-gray);
    transition: var(--transition);
}

.feature-row:hover {
    background: var(--swift-gray);
    padding-left: 30px;
    padding-right: 30px;
}

.feature-row h3 {
    font-size: 2.5rem;
}

/* Buy Section */
.buy-section {
    background: var(--swift-primary);
    color: var(--swift-dark);
}

.buy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.price-tag {
    font-size: 8rem;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    line-height: 1;
}

.btn-swift {
    padding: 25px 60px;
    background: var(--swift-dark);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    border-radius: 100px;
    display: inline-block;
    font-size: 1.5rem;
    transition: var(--transition);
}

.btn-swift:hover {
    transform: scale(1.1);
}

/* AOS Styles */
[data-aos] {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .swift-hero h1 { font-size: 4rem; }
    .product-showcase { position: relative; width: 100%; right: 0; top: 0; transform: none; margin-top: 50px; }
    .swift-hero { height: auto; padding: 120px 0; }
    .feature-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .buy-grid { grid-template-columns: 1fr; gap: 50px; }
    .price-tag { font-size: 5rem; }
}
