* { margin: 0; padding: 0; box-sizing: border-box; } 
html { font-size: 100%; scroll-behavior: smooth; } 
body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; 
    font-weight: 400;
    font-size: 1.2rem; 
    line-height: 1.6; 
    color: #cbd5e0; 
    background-color: #0f1115; /* Midnight Charcoal */
}
h1, h2, h3, h4, h5, h6 { 
    margin-bottom: 1rem; 
    color: #f7fafc; 
    line-height: 1.2; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    font-weight: 300; 
} 
h1 { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.02em; } 
h2 { font-size: 2.25rem; font-weight: 300; } 
h3 { font-size: 1.75rem; font-weight: 300; } 

.pro { color: #ff8300; }
.lific, .web { color: #fff; }
.design { color: #ff8300; }

ul { padding-left: 32px; list-style-position: inside; margin-bottom: 16px; } 
ul li { margin-left: 0; line-height: 1.8; } 
p { padding-top:18px; font-size: 1.15rem; line-height: 1.8; color: #cbd5e0; margin-bottom: 1.5rem; } 
.spacer-64px { height: 64px; width: 100%; display: block; clear: both; }
.spacer-32px { height: 32px; width: 100%; display: block; clear: both; }

.button-container { display: flex; justify-content: center; align-items: center; width: 100%; } 
.button { 
    background-color: #ff8300; 
    color: #000; 
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem; 
    padding: 16px 48px; 
    border: none; 
    border-radius: 12px; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    margin-bottom: 32px; 
    box-shadow: 0 4px 14px rgba(255, 131, 0, 0.3);
} 
.button:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(255, 131, 0, 0.5);
    filter: brightness(1.1);
} 
.button:active { transform: translateY(0); }

.large-text { font-size: 1.375rem; color: #edf2f7; } 
.small-text { font-size: 0.9375rem; }

.container { width: 980px; max-width: 100%; margin: 0 auto; padding: 0 32px; }

.main-nav { position: absolute; top: 0; left: 0; right: 0; z-index: 10; background-color: transparent; padding: 1.5rem 0; } 
.main-nav ul { list-style-type: none; display: flex; justify-content: flex-start; gap: 40px; } 
.main-nav a { color: #f7fafc; font-weight: 500; text-decoration: none; transition: all 0.3s ease; font-size: 1.1rem; } 
.main-nav a:hover { color: #ff8300; } 

.hamburger { display: none; cursor: pointer; padding: 10px; position: fixed; top: 20px; right: 20px; z-index: 1001; } 
.hamburger span { display: block; width: 25px; height: 3px; background-color: #ff8300; margin: 5px 0; transition: 0.3s; }

.banner { position: relative; width: 100%; height: 650px; background-size: cover; background-position: center; background-repeat: no-repeat; color: #cbd5e0; } 
.banner-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(15, 17, 21, 0.6) 0%, rgba(15, 17, 21, 0.9) 100%); } 
.banner-text { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); max-width: 980px; width: 100%; text-align: center; padding: 0; } 
.banner-text h1 { font-size: 5rem; line-height: 1; margin-bottom: 1rem; color: #f7fafc; text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5); opacity: 0; animation: fadeInDown 1s ease forwards; } 
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.banner-text p { font-size: 1.75rem; color: #cbd5e0; opacity: 0; animation: fadeIn 1.5s ease forwards 0.5s; }
@keyframes fadeIn {
  to { opacity: 1; }
}

section { padding: 40px 0; } 
.section-split { display: flex; justify-content: space-between; margin-bottom: 64px; gap: 40px; } 
.section-split > div { width: 48%; }

.features-list, .plan-list { list-style-type: none; padding-left: 0; } 
.features-list li, .plan-list li { margin-bottom: 0.75rem; padding-left: 2rem; position: relative; } 
.features-list li::before, .plan-list li::before { content: '✓'; color: #ff8300; position: absolute; left: 0; font-weight: bold; }

.img-responsive { max-width: 100%; height: auto; display: block; margin: 1rem 0; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
img.left, img.right { max-width: 50%; margin: 0 20px 20px 0; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
img.left { float: left; }
img.right { float: right; }
.full-width-image { width: 100%; height: auto; display: block; margin: 0; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
figcaption { font-size: 0.9rem; text-align: center; color: #718096; margin-top: 12px; padding: 0 0 20px; font-style: italic; }
figure { position: relative; }

a { color: #ff8300; text-decoration: none; transition: all 0.3s ease; border-bottom: 1px solid transparent; } 
a:hover { color: #fff; border-bottom: 1px solid #fff; }
 
footer { background-color: #0a0c0e; padding: 40px 0; margin-top: 60px; border-top: 1px solid #1a202c; } 
footer p, footer .copyright { color: #718096; margin: 0; text-align: center; } 
.footer-content { display: flex; justify-content: center; align-items: center; flex-direction: column; } 
.copyright { font-size: 0.9rem; margin: 0; text-align: center; } 
footer .copyright a { color: #718096; margin-left: 1rem; text-decoration: underline; } 
footer .copyright a:hover { color: #ff8300; } 
.centered-bottom-button { text-align: center; }
hr { border: 0; height: 1px; background-color: #2d3748; margin-bottom: 20px; } 
::selection { background-color: #ff8300; color: #000; }

pre { white-space: pre-wrap; word-wrap: break-word; background-color: #1a202c; color: #e2e8f0; border: 1px solid #2d3748; border-radius: 12px; padding: 1rem; overflow-x: auto; } 
code { font-family: 'Fira Code', Consolas, Monaco, monospace; font-size: 0.9em; background-color: #1a202c; color: #ff8300; padding: 0.2em 0.4em; border-radius: 4px; }

@media (max-width: 768px) { 
    .container { padding: 0 20px; } 
    .hamburger { display: block; position: fixed; top: 20px; right: 20px; z-index: 1001; padding: 15px; } 
    .main-nav ul { 
        display: none; 
        flex-direction: column; 
        position: fixed; 
        top: 0; 
        left: 0; 
        right: 0; 
        background-color: rgba(15, 17, 21, 0.85); 
        backdrop-filter: blur(12px); 
        padding: 120px 40px 64px 40px; 
        align-items: flex-end; 
        z-index: 1000; 
        height: 100vh; 
        width: 100%;
        gap: 20px;
    } 
    .main-nav ul.show { display: flex; } 
    .main-nav li { margin: 0; width: auto; text-align: right; } 
    .main-nav a { display: block; padding: 12px 0; white-space: nowrap; font-size: 1.5rem; }
    .section-split { flex-direction: column; } 
    .section-split > div { width: 100%; margin-bottom: 32px; } 
    .banner { height: 500px; } 
    .banner-text h1 { font-size: 3.5rem; } 
    .banner-text p { font-size: 1.2rem; } 
    .footer-content { flex-direction: column; text-align: center; } 
    .footer-links { margin-top: 1rem; } 
    .footer-links a { margin: 0 0.5rem; }
} 

@media (max-width: 480px) { 
    .banner-text h1 { font-size: 2.8rem; } 
    .banner-text p { font-size: 1.1rem; } 
}
