 {} *{} /*endBaseStyles*/ #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } /* Core Theme Variables */ :root { --bg-main: #232323; --bg-secondary: #1a1a1a; --gold: #b19c57; --gold-hover: #c4ae65; --text-light: #ffffff; --text-muted: #cccccc; } /* Reset & Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: var(--bg-main); color: var(--text-light); font-family: 'Montserrat', sans-serif; line-height: 1.6; overflow-x: hidden; } h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text-light); } .text-gold { color: var(--gold); } /* Layout Containers */ .container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; } .text-center { text-align: center; } /* Header / Nav */ header { padding: 20px 0; border-bottom: 1px solid rgba(177, 156, 87, 0.2); background: var(--bg-secondary); } .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 2px; text-decoration: none; color: var(--text-light); } /* Hero Section */ .hero { text-align: center; padding: 120px 20px; background: radial-gradient(circle at center, #333333 0%, var(--bg-main) 100%); border-bottom: 2px solid var(--gold); } .hero h1 { font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; } .hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 40px auto; } /* Buttons */ .btn-gold { background-color: var(--gold); color: var(--bg-main); padding: 18px 45px; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; text-decoration: none; display: inline-block; transition: all 0.3s ease; border: 2px solid var(--gold); font-family: 'Montserrat', sans-serif; cursor: pointer; } .btn-gold:hover { background-color: transparent; color: var(--gold); box-shadow: 0 0 20px rgba(177, 156, 87, 0.4); } /* Grid Layouts */ .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; } .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } /* Cards */ .card { background: var(--bg-secondary); padding: 40px 30px; border-radius: 8px; border-top: 4px solid var(--gold); transition: transform 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .card:hover { transform: translateY(-10px); } .card h3 { font-size: 1.5rem; margin-bottom: 15px; } /* The Edge / Features Section */ .edge-section { background-color: #1f1f1f; } /* Stepper */ .stepper { max-width: 800px; margin: 0 auto; } .step { display: flex; gap: 20px; margin-bottom: 30px; background: var(--bg-secondary); padding: 30px; border-radius: 8px; border-left: 4px solid var(--gold); } .step-number { background: var(--gold); color: var(--bg-main); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; flex-shrink: 0; } /* Interactive Calculator & Table */ .calc-wrapper { background: var(--bg-secondary); padding: 50px; border-radius: 12px; border: 1px solid rgba(177, 156, 87, 0.3); max-width: 900px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.6); } .slider-container { margin: 40px 0; } input[type=range] { width: 100%; height: 6px; background: #444; border-radius: 5px; outline: none; -webkit-appearance: none; accent-color: var(--gold); } input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 25px; height: 25px; border-radius: 50%; background: var(--gold); cursor: pointer; transition: 0.2s; } input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); } .results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; text-align: center; } .result-box { background: var(--bg-main); padding: 20px; border-radius: 8px; border: 1px solid #333; } .result-value { font-size: 2.5rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; } table { width: 100%; border-collapse: collapse; margin-top: 20px; background: var(--bg-main); border-radius: 8px; overflow: hidden; } th, td { padding: 15px; text-align: center; border-bottom: 1px solid #333; } th { background: rgba(177, 156, 87, 0.1); color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; } tr:last-child td { border-bottom: none; } tr:hover { background: rgba(255,255,255,0.02); } /* Footer & Disclaimer */ footer { background: #111; padding: 60px 20px 30px 20px; text-align: center; border-top: 1px solid #333; } .disclaimer { font-size: 0.75rem; color: #777; max-width: 1000px; margin: 0 auto 20px auto; text-align: justify; line-height: 1.8; } /* Floating WhatsApp */ .float-wa { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.4); z-index: 9999; text-decoration: none; transition: all 0.3s; } .float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); } .float-wa svg { width: 35px; height: 35px; fill: white; } @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .results-grid { grid-template-columns: 1fr; } .calc-wrapper { padding: 30px 20px; } table { font-size: 0.85rem; } th, td { padding: 10px 5px; } } /* Core Theme Variables */ :root { --bg-main: #232323; --bg-secondary: #1a1a1a; --gold: #b19c57; --gold-hover: #c4ae65; --text-light: #ffffff; --text-muted: #cccccc; } /* Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: var(--bg-main); color: var(--text-light); font-family: 'Montserrat', sans-serif; line-height: 1.6; overflow-x: hidden; } h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text-light); } .text-gold { color: var(--gold); } /* Layout Containers */ .container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; } .text-center { text-align: center; } /* Header */ header { padding: 20px 0; border-bottom: 1px solid rgba(177, 156, 87, 0.2); background: var(--bg-secondary); } .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 2px; text-decoration: none; color: var(--text-light); } /* Hero Section */ .hero { text-align: center; padding: 120px 20px; background: radial-gradient(circle at center, #333333 0%, var(--bg-main) 100%); border-bottom: 2px solid var(--gold); } .hero h1 { font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; } .hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 40px auto; } /* Buttons */ .btn-gold { background-color: var(--gold); color: var(--bg-main); padding: 18px 45px; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; text-decoration: none; display: inline-block; transition: all 0.3s ease; border: 2px solid var(--gold); font-family: 'Montserrat', sans-serif; cursor: pointer; } .btn-gold:hover { background-color: transparent; color: var(--gold); box-shadow: 0 0 20px rgba(177, 156, 87, 0.4); } /* Grid Layouts */ .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center; } .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } /* Cards */ .card { background: var(--bg-secondary); padding: 40px 30px; border-radius: 8px; border-top: 4px solid var(--gold); transition: transform 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .card:hover { transform: translateY(-10px); } .card h3 { font-size: 1.5rem; margin-bottom: 15px; } /* Sections */ .edge-section { background-color: #1f1f1f; } .risk-section { border-top: 1px solid #333; border-bottom: 1px solid #333; padding: 60px 20px; } /* Stepper */ .stepper { max-width: 800px; margin: 0 auto; } .step { display: flex; gap: 20px; margin-bottom: 30px; background: var(--bg-secondary); padding: 30px; border-radius: 8px; border-left: 4px solid var(--gold); } .step-number { background: var(--gold); color: var(--bg-main); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; flex-shrink: 0; } /* Interactive Calculator */ .calc-wrapper { background: var(--bg-secondary); padding: 50px; border-radius: 12px; border: 1px solid rgba(177, 156, 87, 0.3); max-width: 900px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.6); } .slider-container { margin: 40px 0; } input[type=range] { width: 100%; height: 6px; background: #444; border-radius: 5px; outline: none; -webkit-appearance: none; accent-color: var(--gold); } input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 25px; height: 25px; border-radius: 50%; background: var(--gold); cursor: pointer; transition: 0.2s; } input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); } .results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; text-align: center; } .result-box { background: var(--bg-main); padding: 20px; border-radius: 8px; border: 1px solid #333; } .result-value { font-size: 2.5rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; } table { width: 100%; border-collapse: collapse; margin-top: 20px; background: var(--bg-main); border-radius: 8px; overflow: hidden; } th, td { padding: 15px; text-align: center; border-bottom: 1px solid #333; } th { background: rgba(177, 156, 87, 0.1); color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; } /* Footer */ footer { background: #111; padding: 60px 20px 30px 20px; text-align: center; border-top: 1px solid #333; } .disclaimer { font-size: 0.75rem; color: #777; max-width: 1000px; margin: 0 auto 20px auto; text-align: justify; line-height: 1.8; } /* Floating WhatsApp */ .float-wa { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.4); z-index: 9999; text-decoration: none; transition: all 0.3s; } .float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); } .float-wa svg { width: 35px; height: 35px; fill: white; } @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .results-grid { grid-template-columns: 1fr; } .calc-wrapper { padding: 30px 20px; } }
