@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
:root {
    --grad-start: #1A2980;
    --grad-end: #26D0CE;
    --white: #ffffff;
    --text: #2d3436;
}
* { margin:0; padding:0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: #f4f4f4; color: var(--text); overflow-x: hidden; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-bottom: 50px;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}
.hero-text { color: white; flex: 1; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.2; font-weight: 700; margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.hero-price { font-size: 2.5rem; font-weight: bold; color: #ffd700; margin-bottom: 30px; display: block; }
.hero-img-box { flex: 1; text-align: center; position: relative; }
.hero-img { 
    width: 100%; max-width: 500px; border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); 
    transform: rotate(-3deg); transition: 0.5s; 
    border: 5px solid rgba(255,255,255,0.2);
}
.hero-img:hover { transform: rotate(0) scale(1.02); }

/* Buttons */
.btn-main {
    background: white; color: var(--grad-start);
    padding: 18px 40px; font-size: 1.2rem; font-weight: bold;
    border-radius: 50px; border: none; cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s; display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-main:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

/* Features */
.section { padding: 60px 20px; max-width: 1100px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.f-card { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.f-card:hover { transform: translateY(-10px); }
.f-icon { font-size: 3rem; margin-bottom: 15px; background: -webkit-linear-gradient(var(--grad-start), var(--grad-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Modal Order Form */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 9999;
    display: none; align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; animation: fadeIn 0.3s; }
.modal-box {
    background: white; padding: 40px; width: 100%; max-width: 500px;
    border-radius: 20px; position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideUp 0.3s;
}
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 25px; cursor: pointer; color: #999; }
.form-input { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #eee; border-radius: 10px; background: #f9f9f9; font-size: 1rem; }
.form-input:focus { border-color: var(--grad-start); background: white; outline: none; }
.btn-submit { width: 100%; background: linear-gradient(90deg, var(--grad-start), var(--grad-end)); color: white; padding: 15px; border: none; border-radius: 10px; font-weight: bold; font-size: 1.1rem; cursor: pointer; }

/* Sticky Mobile CTA */
.sticky-bar { 
    position: fixed; bottom: 0; left: 0; width: 100%; background: white; 
    padding: 15px; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); 
    display: none; z-index: 1000; justify-content: center; 
}

@media(max-width: 768px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero { clip-path: none; padding-bottom: 50px; }
    .sticky-bar { display: flex; }
    .hero-img { margin-top: 30px; transform: none; }
}

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideUp { from { transform: translateY(50px); opacity:0; } to { transform: translateY(0); opacity:1; } }