:root {
    --primary: #e67e22;      
    --primary-dark: #cf6d17;
    --dark: #1a1a1a;           
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #333333;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.7; background: var(--white); }
.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Header */
header { background: var(--dark); padding: 18px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--white); font-family: 'Oswald', sans-serif; font-size: 1.6rem; letter-spacing: 1px; }
.logo span { color: var(--primary); }
nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 25px; }
nav a { color: var(--white); text-decoration: none; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; transition: var(--transition); }
nav a:hover { color: var(--primary); }
.btn-nav { border: 1px solid var(--primary); padding: 8px 18px; border-radius: 4px; color: var(--primary) !important; }

/* Hero */
.hero { background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/hero.jpg'); background-size: cover; background-position: center; color: var(--white); padding: 120px 0; text-align: center; }
.badge { background: rgba(230, 126, 34, 0.2); border: 1px solid var(--primary); color: var(--primary); padding: 6px 18px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.highlight { color: var(--primary); }
.hero p { font-size: 1.1rem; max-width: 750px; margin: 0 auto 30px; opacity: 0.9; }

/* Trust Bar */
.trust-bar { background: var(--light); padding: 20px 0; border-bottom: 1px solid #eee; }
.trust-bar .container { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { font-weight: 600; font-size: 0.85rem; color: #666; display: flex; align-items: center; }
.trust-item span { color: var(--primary); margin-right: 8px; font-size: 1.1rem; }

/* Buttons */
.btn-primary { background: var(--primary); color: #fff; border: none; padding: 16px 35px; font-weight: bold; cursor: pointer; border-radius: 5px; transition: var(--transition); text-decoration: none; display: inline-block; text-transform: uppercase; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3); }
.btn-secondary { background: transparent; border: 2px solid #fff; color: #fff; padding: 14px 35px; border-radius: 5px; text-decoration: none; margin-left: 10px; transition: var(--transition); display: inline-block; text-transform: uppercase; }
.btn-secondary:hover { background: var(--white); color: var(--dark); }

/* Packaging & Pricing Cards */
.packaging-section { padding: 100px 0; background: #fafafa; }
.packaging-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.package-card { background: var(--white); padding: 40px 30px; border-radius: 12px; text-align: center; transition: var(--transition); box-shadow: 0 5px 20px rgba(0,0,0,0.03); display: flex; flex-direction: column; justify-content: space-between; }
.package-card.featured { border-top: 5px solid var(--primary); }
.package-icon { font-size: 2rem; margin-bottom: 15px; }

.price-box { margin: 20px 0; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.price-item { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 5px; }
.price-item span { color: var(--primary); font-weight: 700; }

.tag { font-size: 0.7rem; font-weight: 700; background: #fdf2e9; color: var(--primary); padding: 5px 12px; border-radius: 4px; text-transform: uppercase; display: inline-block; margin-top: 15px; align-self: center; }
.disclaimer { text-align: center; margin-top: 30px; font-size: 0.8rem; color: #888; font-style: italic; }

/* Rest of Layout */
.about { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Oswald', sans-serif; font-size: 2.8rem; margin-top: 10px; }
.subtitle { color: var(--primary); text-transform: uppercase; font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; }

.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }
.about-info { background: #fff8f2; padding: 40px; border-radius: 10px; border-left: 6px solid var(--primary); }

.specs-section { background: var(--dark); color: var(--white); padding: 100px 0; }
.specs-flex { display: flex; align-items: center; gap: 80px; }
.table-container { flex: 1; background: #222; padding: 30px; border-radius: 10px; }
table { width: 100%; border-collapse: collapse; }
td { padding: 18px; border-bottom: 1px solid #333; }
td:last-child { text-align: right; color: var(--primary); font-weight: bold; }

.contact-section { padding: 100px 0; background: var(--white); }
.form-container { background: var(--white); border-radius: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); max-width: 850px; margin: auto; overflow: hidden; }
.form-header { background: #111; color: #fff; padding: 40px; text-align: center; }
form { padding: 50px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, select, textarea { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; background: #fcfcfc; font-family: inherit; }

footer { background: #000; color: #777; padding: 60px 0; text-align: center; }
footer .legal { font-size: 0.8rem; margin-top: 10px; }

@media (max-width: 768px) {
    .about-grid, .specs-flex, .form-row { grid-template-columns: 1fr; }
    .trust-bar .container { flex-direction: column; gap: 15px; }
    nav ul { display: none; }
    .hero h1 { font-size: 2.5rem; }
}