@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --bg-dark: #07090f;
  --bg-panel: rgba(13, 19, 33, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  --accent-cyan: #00f0ff;
  --accent-purple: #b300ff;
  --text-main: #f0f4f8;
  --text-muted: #8b9bb4;
  --gradient-glow: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  line-height: 1.6;
}

::selection {
  background: var(--accent-cyan);
  color: var(--bg-dark);
}

/* Glassmorphic Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 5%;
}

.logo-container img {
  height: 45px;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-purple);
}

.btn-glow {
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  background: var(--bg-panel);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
}

.btn-glow:hover {
  background: var(--gradient-glow);
  color: var(--bg-dark);
  text-shadow: none;
  box-shadow: 0 0 25px rgba(179, 0, 255, 0.4);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 5%;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/hero_background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Sections */
section {
  padding: 8rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-header span {
  color: var(--accent-cyan);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.glass-panel {
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 240, 255, 0.05);
  border-color: rgba(0, 240, 255, 0.2);
}

.feature-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

/* Text Content */
h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.glass-panel p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Contact Form */
input, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 8px;
  color: var(--text-main);
  font-family: inherit;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.08);
}

label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group {
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background-color: rgba(3, 5, 10, 0.95);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 5% 2rem;
  color: var(--text-muted);
  text-align: left;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col {
  text-align: left;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.footer-links {
  list-style: none !important;
  list-style-type: none !important;
  margin-left: 0 !important;
  padding: 0 !important;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent-purple);
  text-shadow: 0 0 8px rgba(179, 0, 255, 0.5);
  padding-left: 5px;
}
footer a { color: var(--accent-purple); text-decoration: none; }

/* Animations */
.anim-target {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-target.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero h1 { font-size: 2.5rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 4rem 5%; }
  .section-header { margin-bottom: 2rem; }
  nav { display: none; } /* Simplified for this iteration, a real hamburger menu would be added here */
}

/* Custom Content Typography & FAQ Additions */
.faq-container { margin-top: 2rem; }
.faq-card {
  margin-bottom: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}
.accordion {
  background-color: transparent;
  color: var(--text-main);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion:after {
  content: '\002B';
  color: var(--accent-cyan);
  font-weight: bold;
  font-size: 1.5rem;
  margin-left: 5px;
}
.accordion.active:after { content: "\2212"; }
.panel {
  padding: 0 18px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.panel p { margin: 15px 0; color: var(--text-muted); }

.check-list { list-style: none; padding: 0; text-align: left; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-purple);
  font-weight: bold;
}
.tag-cloud span {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 20px;
  margin: 5px;
  font-size: 0.9rem;
  color: var(--accent-cyan);
}
.process-steps .step { padding: 2rem; }
.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-glow);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

select {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 8px;
  color: var(--text-main);
  margin-top: 0.5rem;
}
.checkbox-label {
  display: flex !important;
  align-items: center;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: var(--text-main) !important;
  font-weight: 400 !important;
  gap: 10px;
  margin-bottom: 10px;
}
.checkbox-label input { width: auto; margin-top: 0; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.highlight-text {
  color: var(--accent-cyan);
  text-decoration: none;
}
.highlight-text:hover {
  color: var(--accent-purple);
}

