/* ============================================================
   NetWorker Bilgi Teknolojileri — Main Stylesheet
   Colors: Primary #2B3470 | Accent #45C3E5 | Light #EBF7FC
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:      #2B3470;
  --primary-dark: #1e2554;
  --accent:       #45C3E5;
  --accent-dark:  #2fa8cc;
  --light:        #EBF7FC;
  --light2:       #f4fbff;
  --white:        #ffffff;
  --text:         #1A1A2E;
  --text-muted:   #6B7280;
  --border:       #e0edf5;
  --shadow:       0 4px 24px rgba(43,52,112,.10);
  --shadow-md:    0 8px 32px rgba(43,52,112,.14);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --max-w:        1200px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(69,195,229,.45);
  outline-offset: 3px;
}

/* ── Typography ────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}
.section-title { color: var(--primary); margin-bottom: 1rem; }
.section-subtitle { max-width: 580px; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(69,195,229,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Header / Navigation ────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(43, 52, 112, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: .7rem 0;
}
#header.scrolled .nav-link { color: var(--text); }
#header.scrolled .nav-link:hover { color: var(--accent); }
#header.scrolled .logo-text .net { color: var(--primary); }
#header.scrolled .logo-text .worker { color: var(--accent); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.logo img { height: 40px; width: auto; }
.logo-text { font-size: 1.45rem; font-weight: 800; line-height: 1; }
.logo-text .net    { color: var(--white); }
.logo-text .worker { color: var(--accent); }
.logo-text .sub    { display: block; font-size: .55rem; font-weight: 400; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .5rem .85rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
#header.scrolled .nav-link.active { background: var(--light); color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
}
#header.scrolled .lang-switcher {
  background: var(--light);
  border-color: var(--border);
}
.lang-btn {
  background: none;
  border: none;
  padding: .3rem .7rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
}
#header.scrolled .lang-btn { color: var(--text-muted); }
#header.scrolled .lang-btn.active { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  padding: .75rem 2rem;
}
.mobile-menu .nav-link:hover { color: var(--accent); background: none; }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a4a7a 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2345C3E5' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: #7b5ea7;
  bottom: -150px; left: -100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(69,195,229,.15);
  border: 1px solid rgba(69,195,229,.35);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--accent); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat { flex: 1 1 90px; }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-illustration {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.25));
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  padding: 2.5rem 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: .35rem;
  font-weight: 500;
}

/* ── Partners Strip ────────────────────────────────────────── */
.partners-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #1e2a5e 100%);
  padding: 2.2rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.partners-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2345C3E5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.partners-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,.55);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.partners-label::before,
.partners-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(69,195,229,.4);
}
.partners-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.partners-viewport::before,
.partners-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 100px;
  pointer-events: none;
}
.partners-viewport::before { left: 0; background: linear-gradient(to right, var(--primary), transparent); }
.partners-viewport::after  { right: 0; background: linear-gradient(to left, var(--primary), transparent); }
.partners-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  padding: .3rem 0;
  animation: partners-scroll 34s linear infinite;
  will-change: transform;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  padding: .45rem 1.1rem;
  color: rgba(255,255,255,.78);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all var(--transition);
}
.partner-item:hover {
  transform: translateY(-2px);
  border-color: rgba(69,195,229,.5);
  background: rgba(69,195,229,.2);
  color: var(--white);
}

/* ── Cards ─────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-6 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.card-icon {
  width: 56px; height: 56px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--transition);
}
.card:hover .card-icon { background: var(--accent); color: var(--white); }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { color: var(--primary); margin-bottom: .5rem; }
.card p  { font-size: .9rem; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1rem;
  transition: gap var(--transition);
}
.card .card-link:hover { gap: .6rem; }

/* Solution cards — larger */
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity var(--transition);
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.solution-card:hover::before { opacity: 1; }
.solution-card .card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: var(--light);
  margin-bottom: 1.5rem;
}
.solution-card:hover .card-icon { background: var(--accent); color: var(--white); }
.solution-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: .75rem; }

/* Solution detail cards */
.sol-detail-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sol-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(69,195,229,.45);
  box-shadow: var(--shadow-md);
}
.sol-detail-header {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}
.sol-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
}
.sol-hero-icon svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.sol-detail-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.3;
}
.sol-detail-body {
  padding: 1.5rem;
}
.sol-detail-body p {
  font-size: .92rem;
  margin-bottom: 1rem;
}
.sol-tag {
  display: inline-flex;
  align-items: center;
  margin: .25rem .25rem .25rem 0;
  border-radius: 999px;
  background: var(--light);
  padding: .35rem .75rem;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 600;
}

/* ── Section BG variations ─────────────────────────────────── */
.bg-light  { background: var(--light2); }
.bg-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a7a 100%);
  color: var(--white);
}
.bg-primary h2 { color: var(--white); }
.bg-primary p  { color: rgba(255,255,255,.75); }

/* ── Why Choose Us ─────────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.why-item:hover { background: var(--light); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; }
.why-item h4 { color: var(--primary); margin-bottom: .3rem; }
.why-item p  { font-size: .9rem; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1a6da0 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(69,195,229,.15);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.cta-banner .btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-section { padding: 5rem 0; }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.blog-card-img svg { width: 60px; height: 60px; opacity: .5; }
.blog-card-img .blog-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
}
.blog-card-body { padding: 1.5rem; }
.blog-date {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
}
.blog-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: .5rem;
  line-height: 1.4;
}
.blog-card p { font-size: .88rem; }
.blog-card .card-link { margin-top: .75rem; }

/* ── Service Cards ─────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-card .card-icon { flex-shrink: 0; margin-bottom: 0; }
.service-card h3 { color: var(--primary); margin-bottom: .5rem; }
.service-card p  { font-size: .92rem; }

/* Services detail page */
.support-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--primary), #1a4a7a);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.support-banner h3 { color: var(--white); margin-bottom: .25rem; }
.support-banner p { color: rgba(255,255,255,.72); margin: 0; }
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light);
  border-color: var(--light);
}
.svc-big-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.svc-big-card:hover {
  transform: translateY(-4px);
  border-color: rgba(69,195,229,.45);
  box-shadow: var(--shadow-md);
}
.svc-big-card-side {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: 2rem;
  background: linear-gradient(160deg, var(--primary), var(--accent));
  color: var(--white);
}
.svc-big-card-side h3 {
  color: var(--white);
  line-height: 1.25;
}
.icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.icon-wrap svg {
  width: 32px;
  height: 32px;
}
.svc-big-card-body { padding: 2rem; }
.svc-big-card-body p { margin-bottom: 1rem; }
.svc-feature {
  display: inline-flex;
  align-items: center;
  margin: .3rem .35rem .3rem 0;
  border-radius: 999px;
  background: var(--light);
  padding: .4rem .8rem;
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a4a7a 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2345C3E5' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-top: .75rem; position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb-sep { opacity: .4; }

/* ── About Page ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap svg { width: 180px; height: 180px; color: rgba(255,255,255,.2); }
.about-badge {
  position: absolute;
  bottom: 2rem; left: -1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-badge .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-badge .lbl {
  font-size: .8rem;
  color: var(--text-muted);
}
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mv-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition);
}
.mv-card:hover { border-color: var(--accent); }
.mv-card .mv-icon {
  width: 52px; height: 52px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.mv-card .mv-icon svg { width: 24px; height: 24px; }
.mv-card h3 { color: var(--primary); margin-bottom: .5rem; }
.mv-card p  { font-size: .9rem; }

/* ── Contact Page ──────────────────────────────────────────── */
.quick-contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}
.quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.quick-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.qc-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.qc-icon svg {
  width: 21px;
  height: 21px;
}
.quick-card h4 {
  color: var(--primary);
  margin-bottom: .3rem;
}
.quick-card a {
  display: inline-flex;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: .25rem;
}
.quick-card p {
  font-size: .86rem;
  margin: 0;
}
.contact-page-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), #1a4a7a);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  height: fit-content;
}
.contact-info-card h3 { color: var(--white); margin-bottom: .5rem; }
.contact-info-card > p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(69,195,229,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item h4 { color: var(--white); font-size: .85rem; margin-bottom: .2rem; }
.contact-item p  { color: rgba(255,255,255,.7); font-size: .9rem; }
.contact-map,
.map-placeholder {
  position: relative;
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 160px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  gap: .5rem;
}
.map-placeholder > svg {
  width: 100%;
  height: 100%;
  opacity: .35;
  display: block;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -70%);
}
.map-pin-icon {
  width: 22px;
  height: 22px;
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
}
.map-pin-shadow {
  width: 22px;
  height: 6px;
  margin-top: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,.22);
}
.map-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h3 { color: var(--primary); margin-bottom: .5rem; }
.contact-form-card > p { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(69,195,229,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-section-title {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: .9rem;
  font-weight: 800;
}
.subject-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.subject-opt {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: .75rem .85rem;
  color: var(--text);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.subject-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.opt-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.subject-opt.selected,
.subject-opt:has(input:checked) {
  border-color: var(--accent);
  background: var(--light);
  color: var(--primary);
}
.subject-opt.selected .opt-dot,
.subject-opt:has(input:checked) .opt-dot {
  background: var(--accent);
  box-shadow: inset 0 0 0 2px var(--white);
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-note {
  margin: 0;
  font-size: .84rem;
}

/* ── Footer ────────────────────────────────────────────────── */
#footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text .net    { color: var(--white); }
.footer-brand .logo-text .worker { color: var(--accent); }
.footer-brand .logo-text .sub    { color: rgba(255,255,255,.4); }
.footer-desc {
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,.55);
}
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--accent); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-item span { font-size: .88rem; }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .83rem;
}

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ── Divider ───────────────────────────────────────────────── */
.divider-wave {
  line-height: 0;
  overflow: hidden;
}
.divider-wave svg { display: block; width: 100%; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid-4  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-grid    { gap: 2rem; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero-grid     { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .hero          { padding: 7rem 0 3.5rem; min-height: auto; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .card-grid-2,
  .card-grid-3,
  .card-grid-6   { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  .mv-grid       { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .quick-contact-bar { grid-template-columns: 1fr; margin-top: 0; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .cta-banner    { padding: 2.5rem 1.5rem; }
  .hero-stats    { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
  .form-row      { grid-template-columns: 1fr; }
  .service-card  { flex-direction: column; }
  .support-banner { flex-direction: column; align-items: flex-start; }
  .svc-big-card { grid-template-columns: 1fr; }
  .svc-big-card-side { min-height: 190px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-featured-new { grid-template-columns: 1fr; }
  .blog-grid-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta   { flex-direction: column; }
  .hero h1    { font-size: 1.9rem; }
  .hero-stats { gap: 1.25rem 1rem; }
  .subject-options { grid-template-columns: 1fr; }
  .blog-search-wrap { flex-direction: column; align-items: stretch; }
  .blog-search-input { border-radius: var(--radius); }
}

/* ── Custom HSL Scrollbars ─────────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light2);
}
::-webkit-scrollbar-thumb {
  background: hsl(231, 45%, 45%);
  border-radius: 10px;
  border: 2px solid var(--light2);
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(192, 75%, 58%);
}

/* ── Nav Logo Image ─────────────────────────────────────────── */
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  content: url("../img/logo_dark.png");
}
#header.scrolled .nav-logo-img {
  content: url("../img/logo.png");
}

/* ── Card link arrow fix ───────────────────────────────────── */
.card-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.blog-card .card-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--accent); margin-top: .75rem; transition: gap var(--transition); }
.blog-card .card-link:hover { gap: .65rem; }
.read-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Blog listing page */
.blog-search-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.blog-search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: .85rem 1rem;
  box-shadow: 0 2px 10px rgba(43,52,112,.05);
}
.blog-search-input svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.blog-search-input input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
  color: var(--text);
}
.search-result-count {
  border-radius: 999px;
  background: var(--light);
  padding: .65rem 1rem;
  color: var(--primary);
  font-size: .86rem;
  font-weight: 800;
  white-space: nowrap;
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 2rem;
  align-items: start;
}
.blog-main { min-width: 0; }
.blog-cat-tabs {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cat-tab {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  padding: .65rem .95rem;
  color: var(--text);
  font-size: .86rem;
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.cat-tab.active,
.cat-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.cat-tab .cnt { margin-left: .25rem; opacity: .7; }
.results-info {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: .88rem;
}
.blog-featured-new {
  display: grid;
  grid-template-columns: 300px 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.75rem;
}
.feat-img-new,
.bc-img {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feat-icon,
.bc-img > svg {
  width: 72px;
  height: 72px;
  opacity: .65;
}
.feat-badge-new,
.bc-cat,
.bc-time {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  padding: .35rem .7rem;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 800;
}
.feat-badge-new,
.bc-cat {
  top: 1rem;
  left: 1rem;
}
.bc-time {
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.bc-time svg {
  width: 13px;
  height: 13px;
}
.feat-body-new,
.bc-body { padding: 1.5rem; }
.feat-body-new {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-body-new h2 {
  color: var(--primary);
  margin-bottom: .75rem;
}
.bc-meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .78rem;
}
.bc-author {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.bc-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bc-avatar svg {
  width: 14px;
  height: 14px;
}
.bc-tags,
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.bc-tag,
.tag-item {
  border-radius: 999px;
  background: var(--light);
  padding: .3rem .65rem;
  color: var(--primary);
  font-size: .74rem;
  font-weight: 700;
}
.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.blog-card-v2 {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(69,195,229,.45);
  box-shadow: var(--shadow-md);
}
.blog-card-v2 .bc-img { min-height: 170px; }
.bc-body h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin: .9rem 0 .5rem;
  line-height: 1.35;
}
.bc-body p { font-size: .88rem; }
.bc-read-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  color: var(--accent-dark);
  font-size: .85rem;
  font-weight: 800;
}
.bc-read-link svg {
  width: 15px;
  height: 15px;
}
.no-results {
  display: none;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.no-results svg {
  width: 46px;
  height: 46px;
  color: var(--accent);
  margin-bottom: .75rem;
}
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 96px;
}
.sidebar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.sidebar-card h4 {
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: .85rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.sidebar-card h4 svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
}
.sidebar-cat-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.sidebar-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: .65rem .75rem;
  color: var(--text);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
}
.sidebar-cat-item.active,
.sidebar-cat-item:hover {
  background: var(--light);
  color: var(--primary);
}
.cat-count { color: var(--text-muted); }
.popular-post {
  display: flex;
  gap: .8rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
}
.popular-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.pp-num {
  color: var(--accent);
  font-weight: 900;
}
.pp-content h5 {
  color: var(--primary);
  font-size: .86rem;
  line-height: 1.35;
  margin-bottom: .25rem;
}
.pp-content span {
  color: var(--text-muted);
  font-size: .76rem;
}
.mini-newsletter {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mini-newsletter input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: .75rem .9rem;
  font: inherit;
}

/* ══ index2 — Yeni bölümler ════════════════════════════════ */

/* ── Çözüm Sekmeleri ───────────────────────────────────────── */
.sol-tabs-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.sol-tabs-nav {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  padding: .5rem;
}
.sol-tab {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem 1.1rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.6);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 500;
  text-align: left;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.sol-tab svg { width: 18px; height: 18px; flex-shrink: 0; }
.sol-tab:hover { background: rgba(255,255,255,.08); color: var(--white); }
.sol-tab.active { background: var(--accent); color: var(--white); font-weight: 600; }
.sol-panels { padding: 2.5rem 2.5rem 2.5rem 1rem; }
.sol-panel { display: none; }
.sol-panel.active { display: block; animation: fadeSlide .3s ease; }
@keyframes fadeSlide { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.sol-panel-head { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.25rem; }
.sol-panel-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: var(--light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.sol-panel-icon svg { width: 28px; height: 28px; }
.sol-panel h3 { font-size: 1.3rem; color: var(--primary); margin: 0; }
.sol-panel > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.sol-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem .5rem;
  list-style: none;
  margin-bottom: 1.75rem;
}
.sol-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--text);
}
.sol-features li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Süreç Adımları ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px var(--light);
  transition: all var(--transition);
}
.process-step:hover .process-num {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.08);
}
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.process-step p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* ── Neden NetWorker (koyu) ────────────────────────────────── */
.why-dark {
  background: linear-gradient(135deg, var(--primary) 0%, #1a2260 100%);
  position: relative;
  overflow: hidden;
}
.why-dark::before {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse at 70% 50%, rgba(69,195,229,.12) 0%, transparent 60%);
  pointer-events:none;
}
.why-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-dark-left h2 { color: var(--white); margin-bottom: 1rem; }
.why-dark-left p { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 2rem; }
.why-dark-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.wds-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.wds-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .25rem;
}
.wds-label { font-size: .78rem; color: rgba(255,255,255,.6); }
.why-dark-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-feat {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all var(--transition);
}
.why-feat:hover { background: rgba(255,255,255,.1); border-color: rgba(69,195,229,.4); }
.why-feat-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(69,195,229,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.why-feat-icon svg { width: 20px; height: 20px; }
.why-feat h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.why-feat p { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.5; margin: 0; }

/* ── Referanslar ───────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid #e8edf5;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(69,195,229,.3); }
.testi-stars { display: flex; gap: .2rem; }
.testi-stars svg { width: 16px; height: 16px; fill: #f5a623; }
.testi-quote {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testi-quote::before { content: '"'; font-size: 2rem; color: var(--accent); line-height: 0; vertical-align: -0.6em; margin-right: .2rem; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--primary); }
.testi-role { font-size: .78rem; color: var(--text-muted); }

/* ── Hizmetler Split ───────────────────────────────────────── */
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.svc-split-left h2 { margin-bottom: 1rem; }
.svc-split-left p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-list-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e8edf5;
  box-shadow: 0 2px 8px rgba(43,52,112,.05);
  transition: all var(--transition);
}
.svc-list-item:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--shadow); }
.svc-list-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.svc-list-icon svg { width: 18px; height: 18px; }
.svc-list-item h4 { font-size: .93rem; font-weight: 700; color: var(--primary); margin-bottom: .2rem; }
.svc-list-item p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ── Responsive (index2 ek) ────────────────────────────────── */
@media (max-width: 1024px) {
  .sol-tabs-wrap { grid-template-columns: 1fr; }
  .sol-tabs-nav { flex-direction: row; flex-wrap: wrap; background: var(--primary); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-grid::before { display: none; }
  .why-dark-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-split { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .sol-features { grid-template-columns: 1fr; }
  .why-dark-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}
