/* Page-specific styles: hero, features, about, services, cta, tabs */
.hero { background: linear-gradient(135deg, rgba(0, 114, 255, 0.2) 0%, rgba(0, 217, 166, 0.2) 100%); color: white; padding: 180px 0 100px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 80%, rgba(0, 198, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 217, 166, 0.1) 0%, transparent 50%); z-index: -1; }
.hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.hero-btns { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }

.features { background-color: rgba(15, 23, 42, 0.7); position: relative; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.about { background-color: rgba(15, 23, 42, 0.5); position: relative; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--light); background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-text p { margin-bottom: 20px; color: var(--gray); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.stat { text-align: center; padding: 20px; background: rgba(30, 41, 59, 0.5); border-radius: 10px; border: 1px solid rgba(0, 198, 255, 0.1); }
.stat h3 { font-size: 2.5rem; color: var(--digital-green); margin-bottom: 5px; }
.about-image { border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); border: 1px solid rgba(0, 198, 255, 0.2); position: relative; }
.about-image::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0, 198, 255, 0.1), rgba(0, 217, 166, 0.1)); z-index: 1; }
.about-image img { width: 100%; height: auto; display: block; transition: transform 0.5s; }
.about-image:hover img { transform: scale(1.05); }

.services { background-color: rgba(15, 23, 42, 0.7); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.cta { background: linear-gradient(135deg, rgba(0, 114, 255, 0.3) 0%, rgba(0, 217, 166, 0.3) 100%); color: white; text-align: center; padding: 80px 0; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 70%, rgba(0, 198, 255, 0.2) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(0, 217, 166, 0.2) 0%, transparent 50%); z-index: -1; }
.cta h2 { font-size: 2.5rem; margin-bottom: 20px; }
.cta p { max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; opacity: 0.9; }

.tabs { margin-bottom: 30px; }
.tab-header { display: flex; border-bottom: 1px solid rgba(0, 198, 255, 0.2); margin-bottom: 30px; flex-wrap: wrap; }
.tab-link { padding: 15px 25px; background: none; border: none; font-size: 1rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: all 0.3s; position: relative; }
.tab-link.active { color: var(--primary); }
.tab-link.active::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
