/* ============================================
   206 Media — Premium Dark Redesign
   ============================================ */

/* === Root Variables === */
:root {
  --bg:       #07091280;
  --bg-solid: #070912;
  --surface:  #0c1120;
  --card:     #101828;
  --card-2:   #0f1a2e;
  --cyan:     #00d4ff;
  --violet:   #7c3aed;
  --gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --text:     #e2e8f0;
  --muted:    #8892a4;
  --border:   rgba(255, 255, 255, 0.07);
}

/* === Base === */
body {
  background: var(--bg-solid);
  color: var(--text);
}

a { color: var(--cyan); }
a:hover { color: #33dcff; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", "Jost", sans-serif;
  color: var(--text);
}

/* === Preloader === */
#preloader { background: var(--bg-solid); }

#preloader:before {
  border-color: var(--card);
  border-top-color: var(--cyan);
  border-bottom-color: var(--violet);
}

/* === Header === */
#header {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
  padding: 18px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(7, 9, 18, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border) !important;
  padding: 12px 0;
}

.navbar a,
.navbar a:focus {
  color: rgba(226, 232, 240, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a { color: var(--cyan); }

/* === Hero === */
#hero {
  background:
    radial-gradient(ellipse at 10% 70%, rgba(124, 58, 237, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
    var(--bg-solid);
  height: 90vh;
  position: relative;
  overflow: hidden;
}

/* Subtle grid overlay */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

#hero .container { position: relative; z-index: 1; }

#hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 18px;
}

#hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero h2 {
  color: var(--muted);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
}

#hero .btn-get-started {
  background: var(--gradient);
  border: none;
  border-radius: 8px;
  padding: 14px 34px;
  font-family: "Inter", "Jost", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: #fff;
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.22), 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

#hero .btn-get-started:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.38), 0 6px 28px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
}

.hero-secondary-btn i {
  font-size: 20px;
  transition: transform 0.3s;
}

.hero-secondary-btn:hover {
  color: var(--cyan);
  text-decoration: none;
}

.hero-secondary-btn:hover i { transform: translateX(3px); }

@media (max-width: 991px) {
  #hero h1 { font-size: 38px; letter-spacing: -1px; }
  #hero h2 { font-size: 16px; }
}

@media (max-width: 575px) {
  #hero h1 { font-size: 32px; }
  .hero-secondary-btn { margin-top: 8px !important; }
}

/* === Channels Strip (formerly empty clients) === */
.clients {
  background: var(--surface) !important;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.channels-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.channel-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-right: 1px solid var(--border);
  transition: color 0.3s;
  white-space: nowrap;
}

.channel-badge:last-child { border-right: none; }
.channel-badge i { font-size: 20px; color: var(--muted); transition: color 0.3s; }
.channel-badge:hover { color: var(--text); }
.channel-badge:hover i { color: var(--cyan); }

@media (max-width: 768px) {
  .channel-badge { padding: 8px 16px; font-size: 11px; }
  .channel-badge:nth-child(3) { border-right: none; }
  .channel-badge:nth-child(4), .channel-badge:nth-child(5), .channel-badge:nth-child(6) { border-top: 1px solid var(--border); }
}

/* === Section General === */
.section-bg { background: var(--surface) !important; }

.section-title h2 {
  color: var(--text);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title h2::before {
  background: var(--border);
  width: 80px;
  left: calc(50% - 40px);
}

.section-title h2::after {
  background: var(--gradient);
  width: 40px;
  height: 3px;
}

.section-title p { color: var(--muted); font-size: 16px; }

/* === What We Do (why-us section) === */
.why-us.section-bg { background: var(--surface) !important; }

.why-us .content { padding: 50px 80px 0 80px; }
.why-us .accordion-list { padding: 0 80px 50px 80px; }

.why-us .content h3 {
  color: var(--text);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.5px;
}

.why-us .content p { color: var(--muted); font-size: 16px; line-height: 1.7; }

.why-us .accordion-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.why-us .accordion-list li:hover {
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.why-us .accordion-list a {
  color: var(--text);
  font-weight: 600;
}

.why-us .accordion-list a.collapsed { color: var(--text); }
.why-us .accordion-list a.collapsed:hover { color: var(--cyan); }
.why-us .accordion-list span { color: var(--cyan); }
.why-us .accordion-list p { color: var(--muted); }
.why-us .accordion-list i { color: var(--muted); }

@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list { padding-left: 0; padding-right: 0; }
}

/* === Our Approach (skills section) === */
.skills { background: var(--bg-solid); }

.skills .content h3 {
  color: var(--text);
  font-family: "Inter", "Poppins", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.5px;
}

.skills .content p { color: var(--muted); line-height: 1.7; }

/* Feature grid replaces the 100% progress bars */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.feature-item {
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.feature-item .fi-icon {
  font-size: 26px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 10px;
}

.feature-item h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* === Why Choose Us (services section) === */
.services.section-bg { background: var(--surface) !important; }

.services .icon-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: none;
  padding: 38px 26px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.services .icon-box:hover::before { opacity: 1; }

.services .icon-box:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.services .icon-box .icon { margin-bottom: 16px; }

.services .icon-box .icon i {
  font-size: 40px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services .icon-box h4 {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.services .icon-box h4 a { color: var(--text); transition: color 0.3s; }
.services .icon-box h4 a:hover { color: var(--cyan); }

.services .icon-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* === CTA Section === */
.cta {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0, 212, 255, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 55%),
    linear-gradient(rgba(7, 9, 18, 0.88), rgba(7, 9, 18, 0.93)),
    url("../img/cta-bg.jpg") fixed center center;
  background-size: auto, auto, auto, cover;
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta h3 {
  color: var(--text);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta p { color: var(--muted); font-size: 16px; }

.cta .cta-btn {
  background: var(--gradient);
  border: none;
  border-radius: 8px;
  padding: 14px 38px;
  color: #fff;
  font-family: "Inter", "Jost", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.22);
  transition: all 0.3s ease;
}

.cta .cta-btn:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 1024px) {
  .cta { background-attachment: scroll; }
}

/* === Footer === */
#footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-newsletter { display: none; }

.footer-top {
  padding: 56px 0 28px 0;
  background: var(--surface);
}

.footer-contact h3 {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-contact p { color: var(--muted); line-height: 1.8; }
.footer-contact strong { color: rgba(226, 232, 240, 0.7); }

.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { padding: 5px 0; }
.footer-links ul a { color: var(--muted); transition: color 0.3s; }
.footer-links ul a:hover { color: var(--cyan); }
.footer-links .bx { color: var(--cyan); margin-right: 6px; font-size: 14px; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-solid);
}

.footer-bottom .copyright { color: var(--muted); font-size: 14px; }

/* === Back to Top === */
.back-to-top {
  background: var(--gradient);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

.back-to-top:hover { box-shadow: 0 0 35px rgba(0, 212, 255, 0.45); }

/* === Mobile Nav === */
.navbar-mobile {
  background: rgba(7, 9, 18, 0.97);
  backdrop-filter: blur(16px);
}

.navbar-mobile ul {
  background: var(--card);
  border-radius: 12px;
}

.navbar-mobile a,
.navbar-mobile a:focus { color: var(--text); }

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a { color: var(--cyan); }
