/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f9f7f4;
}

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

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.3; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }

.highlight { color: #d35400; }

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
}

.logo .dot { color: #d35400; }

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav a:hover { color: #d35400; }

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d6 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content { flex: 1; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 100%; height: auto; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

.badge {
    background: #d35400;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-features {
    list-style: none;
    margin: 20px 0;
}

.hero-features li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(230, 126, 34, 0.4);
}

.large-cta {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.guarantee-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.grid-2.reverse .solution-text { order: -1; }

/* Sections */
section { padding: 70px 0; }
.solution-section { background: #fff; }
.features-section { background: #fdfcf9; }

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover { transform: translateY(-5px); }
.feature-icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }

.features-showcase {
    text-align: center;
    margin: 40px 0;
}

.features-showcase img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials-section { background: #f4e9dc; }
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #d35400;
}

.stars { color: #f39c12; font-size: 1.2rem; letter-spacing: 2px; }
footer strong { display: block; margin-top: 10px; }

/* Pricing */
.price-box {
    background: white;
    max-width: 550px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid #e67e22;
}

.old-price { color: #999; font-size: 1.2rem; }
.current-price { font-size: 2.5rem; font-weight: bold; color: #d35400; margin: 10px 0; }
.savings { background: #27ae60; color: white; padding: 5px 15px; border-radius: 20px; display: inline-block; margin-bottom: 20px; }

.price-benefits {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.price-benefits li { margin-bottom: 10px; }
.price-benefits li::before { content: "✔️ "; }

.guarantee-badge {
    width: 120px;
    margin-top: 20px;
}

/* FAQ */
details {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

summary {
    font-weight: bold;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

summary::after { content: "+"; font-size: 1.5rem; }
details[open] summary::after { content: "-"; }

/* Footer */
footer {
    background: #2c3e50;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}

.footer-links { margin-bottom: 20px; }
.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover { color: #e67e22; }
.disclaimer { font-size: 0.8rem; max-width: 800px; margin: 0 auto 15px; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero .container, .grid-2 { grid-template-columns: 1fr; }
    .hero-image { order: -1; }
    nav { display: none; }
}