/* RESET & BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; line-height: 1.6; color: #333; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
.text-center { text-align: center; }
.responsive-img { max-width: 100%; height: auto; border-radius: 8px; }

/* UTILITY CLASSES */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.flex-row { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; }
.half { flex: 1; min-width: 300px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* BUTTONS */
.button { display: inline-block; padding: 12px 25px; border-radius: 4px; font-weight: bold; cursor: pointer; transition: all 0.3s; border: 2px solid transparent; text-align: center; }
.button.color { background: #007bff; color: #fff; }
.button.color:hover { background: #0056b3; }
.button.outline { background: transparent; border-color: #007bff; color: #007bff; }
.button.outline:hover { background: #007bff; color: #fff; }

/* HEADER (Deep Navy) */
.sticky-wrapper { height: 80px; }
.header { position: fixed; top: 0; width: 100%; background: #0a192f; box-shadow: 0 2px 5px rgba(0,0,0,0.1); z-index: 1000; transition: padding 0.3s; padding: 15px 0; }
.header.stuck { padding: 10px 0; background: #0a192f; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { max-height: 50px; background-color: transparent; }

.nav .menu { display: flex; gap: 20px; }
.nav .menu a { font-weight: bold; color: #ffffff; transition: color 0.3s ease; border-bottom: 2px solid transparent; padding-bottom: 2px;}

/* Link hover and active state (Scrollspy highlighting) */
.nav .menu a:hover, .nav .menu a.active { color: #38bdf8; border-bottom: 2px solid #38bdf8; }

.mobile-menu { display: none; font-size: 30px; cursor: pointer; color: #ffffff; }

/* SLIDER / HERO */
.slider { 
    background: linear-gradient(rgba(0, 15, 30, 0.7), rgba(0, 15, 30, 0.7)), url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; 
    color: #fff; 
    padding: 180px 20px 140px; 
}
.slider h1 { font-size: 4rem; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
/* Updated "10x Faster RPA" text to match the light blue hover color (#38bdf8) */
.slider h2 { font-size: 2.5rem; color: #38bdf8; margin-bottom: 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.slider p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; opacity: 1; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }

/* FEATURES (ABOUT) */
.features { padding: 80px 0; background: #f9f9f9; }
.feature-icon-box { text-align: center; padding: 20px; }
.feature-icon { font-size: 50px; color: #007bff; margin-bottom: 15px; }

/* SHOWCASE SECTIONS */
.showcase { padding: 80px 0; }
.showcase.dark { background: #222; color: #fff; }
.showcase.white-bg { background: #fff; color: #333; }
.showcase.light-bg { background: #f4f7f6; color: #333; }
.showcase h1 span { font-weight: 300; color: #007bff; margin-left: 10px; }
.title-bullet { height: 3px; width: 50px; background: #007bff; margin: 15px 0; }
.check-list li { display: flex; align-items: center; margin-bottom: 10px; }
.check-icon { color: #4CAF50; margin-right: 10px; font-size: 20px; }

/* PRICING */
.pricing { padding: 80px 0; background: #eef2f5; }
.section-title { margin-bottom: 50px; }
.section-title h1 span { font-weight: 300; color: #007bff; }
.price-table { background: #fff; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; text-align: center; border: 1px solid #eaeaea; transition: transform 0.3s; display: flex; flex-direction: column;}
.price-table:hover { transform: translateY(-10px); }
.price-table-header { background: #f8f9fa; padding: 30px 20px; border-bottom: 1px solid #eaeaea; }
.price-table-header h3 { font-size: 1.2rem; color: #666; text-transform: uppercase; }
.price-table-header h2 { font-size: 2.5rem; color: #333; margin-top: 10px; }
.price-table-body { padding: 30px 20px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.price-table-body ul { margin-bottom: 30px; text-align: left; }
.price-table.featured { transform: scale(1.05); border-color: #007bff; box-shadow: 0 10px 25px rgba(0,123,255,0.2); z-index: 10; }
.price-table.featured .price-table-header { background: #007bff; color: #fff; }
.price-table.featured .price-table-header h3, .price-table.featured .price-table-header h2 { color: #fff; }

/* FOOTER */
.footer { background: #1a1a1a; color: #fff; padding: 60px 0 100px; }

/* PRIVACY BANNER */
.privacy-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #333; color: #fff; padding: 20px 0; z-index: 9999; box-shadow: 0 -2px 10px rgba(0,0,0,0.3); }

/* BACK TO TOP */
.back-top { position: fixed; bottom: 80px; right: 20px; background: #007bff; color: #fff; width: 40px; height: 40px; display: none; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; z-index: 1000; opacity: 0.8; }
.back-top:hover { opacity: 1; background: #0056b3; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #0a192f; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav.active { display: block; }
    .nav .menu { flex-direction: column; padding: 20px; gap: 15px; text-align: center; }
    .mobile-menu { display: block; }
    .reverse-mobile { flex-direction: column-reverse; }
    .slider h1 { font-size: 3rem; }
    .price-table.featured { transform: scale(1); }
}