:root {
    --primary-red: #a80000;
    --dark-blue: #111111;
    --text-color: #333333;
    --text-muted: #555555;
    --bg-color: #ffffff;
    --bg-gradient: radial-gradient(circle at top center, #fce8e8 0%, rgba(255,255,255,0) 60%);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    background-repeat: no-repeat;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-wrapper {
    position: relative;
    width: 100%;
}

/* Typography */
h1, h2, h3 {
    color: var(--dark-blue);
    line-height: 1.1;
}

.highlight {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    color: var(--primary-red);
    font-weight: 800;
}

.center {
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.emphasis {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.4rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    max-width: 1400px;
    margin: 0 auto;
}

.pulse-poise {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.pulse { color: var(--primary-red); }
.poise { color: var(--dark-blue); }

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    margin: 0 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

.nav-btn {
    text-decoration: none;
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid var(--dark-blue);
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--dark-blue);
    color: var(--bg-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 42, 122, 0.2);
}

.btn-primary:hover {
    background-color: #e6105c;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 42, 122, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-blue);
    border-color: #ccc;
}

.btn-outline:hover {
    border-color: var(--dark-blue);
    background-color: transparent;
}

/* Hero Section */
/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 5% 6rem;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-top-text {
    font-size: 1.1rem;
    color: var(--text-color);
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.hero-title .highlight {
    text-transform: uppercase;
    font-size: 6.5rem;
    letter-spacing: -2px;
    display: inline-block;
    margin-top: -10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0rem;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    mask-image: radial-gradient(circle, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 70%);
}

/* Product Section */
.product-section {
    background-color: #fafafa;
    padding: 8rem 0;
    color: var(--text-color);
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.product-image-wrapper {
    display: flex;
    justify-content: center;
}

.product-cover {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(168, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-cover:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(168, 0, 0, 0.2);
}

.product-details {
    flex: 1;
}

.product-badge {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.product-title {
    color: var(--dark-blue);
    font-size: 4rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.product-subtitle {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
}

.product-description {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--dark-blue);
    font-weight: 600;
}

.feature i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.product-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.price-current {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.price-original {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    display: block;
}

.secure-text {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Media Queries moved to bottom */

/* Sections */
section {
    padding: 6rem 0;
}

/* Elegant Grid */
.elegant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.grid-item {
    text-align: center;
    padding: 2rem;
}

.grid-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.grid-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.grid-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.elegant-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.elegant-img.portrait {
    max-width: 350px;
}

/* Connection Section */
.connection-section {
    background-color: rgba(230, 25, 43, 0.03);
    padding: 8rem 0;
}

/* Solution Section */
.elegant-list {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
    max-width: 450px;
    margin: 2rem auto 0;
}

.elegant-list li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-blue);
    font-weight: 500;
}

.elegant-list i {
    color: var(--primary-red);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

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

.about-subtitle {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Gallery Section */
.elegant-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.gallery-img {
    height: 350px;
    object-fit: cover;
}

/* Guide Section */
.cta-box-elegant {
    background: #fff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    margin-top: 4rem;
    border: 1px solid rgba(230, 25, 43, 0.1);
}

.cta-box-elegant h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.cta-box-elegant p {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid #eaeaea;
    margin-top: 4rem;
}

footer .logo {
    margin-bottom: 1rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    /* Hero */
    .hero { padding: 5rem 5% 4rem; min-height: auto; }
    .hero-title { font-size: 3.5rem; }
    .hero-title .highlight { font-size: 4.5rem; margin-top: 0; }
    .hero-subtitle { font-size: 1.1rem; padding: 0 1rem; }
    .hero-buttons { flex-direction: column; padding: 0 2rem; gap: 1rem; }
    
    /* Product */
    .product-section { padding: 5rem 0; }
    .product-layout { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .product-title { font-size: 3rem; }
    .product-subtitle { font-size: 1.2rem; }
    .product-features { grid-template-columns: 1fr; text-align: center; margin: 0 auto 2.5rem; max-width: 300px;}
    .feature { justify-content: center; }
    .product-price { justify-content: center; }
    .btn-large { padding: 1rem 2rem; }
    
    /* General Layouts */
    .elegant-grid { grid-template-columns: 1fr; gap: 2rem; }
    .split-layout, .split-layout.reverse { flex-direction: column; text-align: center; gap: 3rem; }
    .split-text h2, .split-text p { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
    .elegant-gallery { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .cta-box-elegant { padding: 2rem; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .navbar { flex-direction: column; gap: 1.5rem; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-title .highlight { font-size: 3.5rem; }
    .product-title { font-size: 2.5rem; }
    .price-current { font-size: 2.5rem; }
}
