:root {
  --ks-navy: #0A1F3D;
  --ks-navy-dark: #06152C;
  --ks-navy-deeper: #040E1F;
  --ks-blue: #1E5CDB;
  --ks-blue-light: #4A82E8;
  --ks-blue-glow: rgba(30, 92, 219, 0.15);
  --ks-text-light: rgba(255, 255, 255, 0.75);
  --ks-text-muted: rgba(255, 255, 255, 0.55);
  --ks-text-body: #4a5568;
  --ks-text-heading: #0A1F3D;
  --ks-border-light: #e8ecf2;
  --ks-bg-section: #f8fafc;

  --bs-primary: #1E5CDB;
  --bs-primary-rgb: 30, 92, 219;
  --bs-dark: #0A1F3D;
  --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bs-body-color: #1a1a1a;
  --bs-border-radius: 0.625rem;
  --bs-border-radius-lg: 0.875rem;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', sans-serif;
  background: white;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ks-text-heading);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.2; }
h3 { font-size: 1.25rem; }

p { line-height: 1.7; color: var(--ks-text-body); }

section { padding: 6rem 0; }
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
}

.section-eyebrow {
  display: inline-block;
  color: var(--ks-blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.dark-section .section-eyebrow { color: #7DA9F0; }

.section-title-block { max-width: 720px; margin-bottom: 3.5rem; }
.section-title-block.text-center { margin-left: auto; margin-right: auto; }
.section-title-block p {
  font-size: 1.02rem;
  color: var(--ks-text-body);
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.dark-section .section-title-block p { color: var(--ks-text-light); }
.dark-section h2 { color: white; }

.navbar {
  padding: 1.1rem 0;
  background: white;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--ks-border-light);
  box-shadow: 0 4px 24px rgba(10, 31, 61, 0.06);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.navbar-brand .logo-mark {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ks-navy);
  line-height: 1;
}
.navbar-brand .logo-mark .slash {
  color: var(--ks-blue);
  margin: 0 -2px;
}
.navbar-brand .logo-tagline {
  display: flex;
  flex-direction: column;
  font-size: 0.62rem;
  color: var(--ks-text-body);
  letter-spacing: 1px;
  line-height: 1.2;
  padding-left: 0.4rem;
  border-left: 1px solid var(--ks-border-light);
}
.navbar .nav-link {
  color: #4a5568 !important;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--ks-blue) !important; }
.navbar .lang-switch {
  font-size: 0.85rem;
  color: #6b7280;
  padding: 0.5rem 0.6rem;
  font-weight: 500;
  text-decoration: none;
}
.navbar .lang-switch.active { color: var(--ks-navy); }
.navbar .lang-switch:hover { color: var(--ks-blue); }

.btn {
  padding: 0.78rem 1.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--bs-border-radius);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--ks-blue);
  border-color: var(--ks-blue);
  color: white;
}
.btn-primary:hover {
  background: #1748B0;
  border-color: #1748B0;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 92, 219, 0.3);
  color: white;
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: white;
}
.btn-outline-dark {
  border: 1.5px solid var(--ks-navy);
  color: var(--ks-navy);
  background: white;
}
.btn-outline-dark:hover {
  background: var(--ks-navy);
  color: white;
}
.btn-lg { padding: 0.95rem 1.9rem; font-size: 1rem; }
.btn .bi-arrow-right { transition: transform 0.2s; }
.btn:hover .bi-arrow-right { transform: translateX(3px); }

.dark-section {
  background: var(--ks-navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(30,92,219,0.18) 0%, transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(30,92,219,0.10) 0%, transparent 40%);
  pointer-events: none;
}
.dark-section .container { position: relative; z-index: 1; }
.dark-section p { color: var(--ks-text-light); }

.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.hero-tags {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #7DA9F0;
  text-transform: uppercase;
}
.hero-tags span:not(:last-child)::after {
  content: '·';
  margin-left: 0.5rem;
  opacity: 0.5;
}
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero h1 .highlight { color: var(--ks-blue-light); }
.hero p.lead {
  color: var(--ks-text-light);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ks-text-light);
}
.hero-features .feature i { color: var(--ks-blue-light); font-size: 1rem; }

.hero-visual {
  position: relative;
  min-height: 460px;
}
.hero-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  min-height: 460px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,61,0.5) 0%, rgba(30,92,219,0.15) 100%);
}

.stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 0.875rem;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  min-width: 170px;
  z-index: 2;
  backdrop-filter: blur(10px);
}
.stat-card .stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.stat-card .stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}
.stat-card .stat-close {
  width: 16px;
  height: 16px;
  color: #d1d5db;
  font-size: 0.85rem;
}
.stat-card .stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ks-navy);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-card .stat-status {
  font-size: 0.75rem;
  font-weight: 500;
}
.stat-card .stat-status.success { color: #10b981; }
.stat-card .stat-trend {
  font-size: 0.72rem;
  color: #10b981;
  font-weight: 500;
}

.stat-card.card-1 { top: 8%; right: -3%; animation: float 6s ease-in-out infinite; }
.stat-card.card-2 { top: 38%; right: 65%; animation: float 6s ease-in-out infinite 1.5s; }
.stat-card.card-3 { bottom: 8%; right: -2%; animation: float 6s ease-in-out infinite 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.stat-card .speed-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(#10b981 0deg 350deg, #e5e7eb 350deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
}
.stat-card .speed-ring::before {
  content: '';
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  position: absolute;
}
.stat-card .speed-ring span {
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ks-navy);
}
.stat-card .mini-chart {
  height: 22px;
  margin-top: 0.4rem;
  background:
    linear-gradient(180deg, rgba(30,92,219,0) 0%, rgba(30,92,219,0.12) 100%);
  position: relative;
  border-radius: 4px;
}

.section-light { background: white; }
.section-alt { background: var(--ks-bg-section); }

.service-card {
  background: white;
  border: 1px solid var(--ks-border-light);
  border-radius: var(--bs-border-radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--ks-blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 31, 61, 0.1);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ks-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  background: var(--ks-blue-glow);
  color: var(--ks-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--ks-text-heading);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--ks-text-body);
  margin-bottom: 1.25rem;
}
.service-card .link-more {
  color: var(--ks-blue);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.service-card .link-more:hover { gap: 0.6rem; }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .why-us-grid { grid-template-columns: 1fr; }
}
.why-us-item {
  text-align: center;
}
.why-us-item .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(30,92,219,0.15);
  color: #7DA9F0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(30,92,219,0.25);
}
.why-us-item h4 {
  color: white;
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}
.why-us-item p {
  color: var(--ks-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.portfolio-tabs {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 0.35rem;
  gap: 0.2rem;
  flex-wrap: wrap;
}
.portfolio-tab {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.2s;
}
.portfolio-tab.active {
  background: var(--ks-navy);
  color: white;
}

.project-card {
  background: white;
  border-radius: var(--bs-border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ks-border-light);
  transition: all 0.3s;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 31, 61, 0.15);
  color: inherit;
}
.project-card .project-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.project-card .project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}
.project-card .project-body {
  padding: 1.25rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-card .project-info h4 {
  font-size: 1.02rem;
  margin: 0 0 0.2rem;
  color: var(--ks-text-heading);
}
.project-card .project-info span {
  font-size: 0.82rem;
  color: #64748b;
}
.project-card .project-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ks-bg-section);
  color: var(--ks-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.project-card:hover .project-link {
  background: var(--ks-blue);
  color: white;
}

.process-section { padding: 6rem 0 5rem; }
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.process-line::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 1.5px dashed #cbd5e1;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step .step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  border: 2px solid #cbd5e1;
  color: var(--ks-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
  position: relative;
}
.process-step:hover .step-circle {
  border-color: var(--ks-blue);
  color: var(--ks-blue);
  transform: scale(1.05);
}
.process-step h5 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ks-text-heading);
}
.process-step p {
  font-size: 0.83rem;
  color: var(--ks-text-body);
  line-height: 1.5;
  margin: 0;
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  .process-line {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-line::before { display: none; }
}

.cta-section {
  background: var(--ks-navy);
  color: white;
  text-align: center;
  padding: 5rem 0;
}
.cta-section h2 { color: white; }
.cta-section p {
  color: var(--ks-text-light);
  max-width: 600px;
  margin: 1rem auto 2rem;
}

footer {
  background: var(--ks-navy-deeper);
  color: var(--ks-text-light);
  padding: 4.5rem 0 2rem;
}
footer h5 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
footer a {
  color: var(--ks-text-light);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
}
footer a:hover { color: var(--ks-blue-light); }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: 0.35rem 0; }
footer .footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
footer .footer-contact li i {
  color: var(--ks-blue-light);
  font-size: 1rem;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  margin-right: 0.5rem;
  transition: all 0.2s;
  color: var(--ks-text-light);
  font-size: 1rem;
}
footer .social-links a:hover {
  background: var(--ks-blue);
  color: white;
  transform: translateY(-2px);
}

.page-header {
  padding: 7rem 0 4rem;
  text-align: center;
}
.page-header h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.page-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ks-text-light);
  font-size: 1.05rem;
}
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ks-text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--ks-text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: white; }
.breadcrumbs i { font-size: 0.7rem; opacity: 0.5; }

.service-detail {
  padding: 5rem 0;
  border-bottom: 1px solid var(--ks-border-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .service-icon-large {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  background: var(--ks-blue-glow);
  color: var(--ks-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-detail h2 { margin-bottom: 1.25rem; }
.service-detail .service-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.service-detail .service-features li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  color: var(--ks-text-body);
  font-size: 0.95rem;
}
.service-detail .service-features li i {
  color: var(--ks-blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-detail-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,31,61,0.12);
}
.service-detail-image img { width: 100%; height: auto; display: block; }

.contact-form-wrap {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid var(--ks-border-light);
  box-shadow: 0 10px 40px rgba(10,31,61,0.06);
}
.form-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ks-text-heading);
  margin-bottom: 0.4rem;
}
.form-control, .form-select {
  border: 1.5px solid var(--ks-border-light);
  border-radius: 0.6rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--ks-blue);
  box-shadow: 0 0 0 4px rgba(30, 92, 219, 0.1);
}
.form-control::placeholder { color: #94a3b8; }
.contact-info-card {
  background: var(--ks-navy);
  color: white;
  border-radius: 1rem;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(30,92,219,0.25) 0%, transparent 50%);
}
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h3 { color: white; margin-bottom: 0.75rem; }
.contact-info-card p { color: var(--ks-text-light); margin-bottom: 2rem; }
.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  background: rgba(30,92,219,0.25);
  color: #7DA9F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-info-list .label {
  font-size: 0.78rem;
  color: var(--ks-text-muted);
  margin-bottom: 0.15rem;
}
.contact-info-list .value {
  color: white;
  font-size: 0.95rem;
  text-decoration: none;
}
.contact-info-list .value:hover { color: #7DA9F0; }

.blog-card {
  background: white;
  border: 1px solid var(--ks-border-light);
  border-radius: var(--bs-border-radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,31,61,0.1);
  color: inherit;
}
.blog-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}
.blog-card-category {
  background: var(--ks-blue-glow);
  color: var(--ks-blue);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
}
.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--ks-text-body);
  flex-grow: 1;
  margin-bottom: 1rem;
}
.blog-card-readmore {
  color: var(--ks-blue);
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 0;
}
.blog-post-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}
.blog-post-content h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}
.blog-post-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: #334155;
}
.blog-post-content ul, .blog-post-content ol {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  padding-left: 1.5rem;
}
.blog-post-content li { margin-bottom: 0.5rem; }
.blog-post-content blockquote {
  border-left: 4px solid var(--ks-blue);
  padding: 0.5rem 1.5rem;
  margin: 2rem 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ks-text-heading);
}
.blog-post-content img {
  width: 100%;
  border-radius: 0.75rem;
  margin: 2rem 0;
}
.blog-post-content code {
  background: #f1f5f9;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.92em;
  color: #be185d;
}
.blog-post-hero-image {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  margin-bottom: 0;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
  border-radius: 0.6rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.service-hero {
  padding: 7rem 0 5rem;
}
.service-hero .badge-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30,92,219,0.15);
  color: #7DA9F0;
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.service-hero h1 { color: white; margin-bottom: 1.25rem; }
.service-hero h1 .highlight { color: var(--ks-blue-light); }
.service-hero .lead {
  color: var(--ks-text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 1.75rem;
}
.service-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.service-hero-stats .stat-block {
  border-left: 2px solid var(--ks-blue);
  padding-left: 1rem;
}
.service-hero-stats .stat-block .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
.service-hero-stats .stat-block .label {
  font-size: 0.8rem;
  color: var(--ks-text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--ks-border-light);
  border-radius: 0.75rem;
  transition: all 0.2s;
}
.feature-item:hover {
  border-color: var(--ks-blue);
  transform: translateX(4px);
}
.feature-item .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: var(--ks-blue-glow);
  color: var(--ks-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--ks-text-heading);
}
.feature-item p {
  font-size: 0.88rem;
  color: var(--ks-text-body);
  margin: 0;
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-tier {
  background: white;
  border: 1px solid var(--ks-border-light);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-tier.featured {
  border: 2px solid var(--ks-blue);
  box-shadow: 0 20px 60px rgba(30,92,219,0.15);
  transform: scale(1.02);
}
.pricing-tier .badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ks-blue);
  color: white;
  font-size: 0.7rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
}
.pricing-tier h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--ks-text-heading);
}
.pricing-tier .tier-tagline {
  color: var(--ks-text-body);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}
.pricing-tier .tier-price-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.25rem;
}
.pricing-tier .tier-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ks-text-heading);
  letter-spacing: -1px;
  line-height: 1;
}
.pricing-tier .tier-price-note {
  font-size: 0.8rem;
  color: var(--ks-text-body);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.pricing-tier ul.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--ks-border-light);
  padding-top: 1.25rem;
  flex-grow: 1;
}
.pricing-tier ul.tier-features li {
  font-size: 0.88rem;
  color: var(--ks-text-body);
  padding: 0.4rem 0;
  display: flex;
  align-items: start;
  gap: 0.6rem;
  line-height: 1.5;
}
.pricing-tier ul.tier-features li i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-tier ul.tier-features li.excluded {
  color: #cbd5e1;
  text-decoration: line-through;
}
.pricing-tier ul.tier-features li.excluded i {
  color: #cbd5e1;
}

.guarantee-section {
  background: var(--ks-bg-section);
  border-radius: 1rem;
  padding: 2.5rem;
}
.guarantee-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}
.guarantee-item .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--ks-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid var(--ks-border-light);
}
.guarantee-item h5 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.guarantee-item p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.55;
}

.faq-item {
  border-bottom: 1px solid var(--ks-border-light);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--ks-border-light); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ks-text-heading);
  padding: 0.5rem 0;
  user-select: none;
}
.faq-question i {
  font-size: 1.25rem;
  color: var(--ks-blue);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0.75rem 0 0.5rem;
}
.faq-answer p {
  color: var(--ks-text-body);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.mini-form-wrap {
  background: var(--ks-navy);
  color: white;
  border-radius: 1rem;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}
.mini-form-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(30,92,219,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.mini-form-wrap > * { position: relative; z-index: 1; }
.mini-form-wrap h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.mini-form-wrap p {
  color: var(--ks-text-light);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.mini-form-wrap .form-control,
.mini-form-wrap .form-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 0.92rem;
}
.mini-form-wrap .form-control::placeholder {
  color: rgba(255,255,255,0.45);
}
.mini-form-wrap .form-control:focus,
.mini-form-wrap .form-select:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--ks-blue);
  color: white;
  box-shadow: 0 0 0 4px rgba(30, 92, 219, 0.2);
}
.mini-form-wrap .form-select option { background: var(--ks-navy); color: white; }
.mini-form-wrap label {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tech-stack .tech-badge {
  background: white;
  border: 1px solid var(--ks-border-light);
  color: var(--ks-text-heading);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.tech-stack .tech-badge i {
  color: var(--ks-blue);
  font-size: 1rem;
}

.process-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .process-mini { grid-template-columns: 1fr; } }
.process-mini-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid var(--ks-border-light);
}
.process-mini-step .step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ks-blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.process-mini-step h5 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.process-mini-step p {
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
  color: var(--ks-text-body);
}

@media (max-width: 991px) {
  .hero-visual { display: none; }
  .hero { padding-top: 6rem; padding-bottom: 4rem; }
}

/* ============ MEGA MENU ============ */
.has-megamenu { position: static; }

.megamenu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.megamenu-trigger:hover,
.megamenu-trigger.active {
  color: var(--ks-blue);
}
.megamenu-trigger .chevron {
  font-size: 0.85rem;
  transition: transform 0.2s;
}
.megamenu-trigger.active .chevron {
  transform: rotate(180deg);
}

/* Desktop mega menu panel */
@media (min-width: 992px) {
  .megamenu-panel {
    position: fixed;
    top: var(--navbar-height, 72px);
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 20px 60px rgba(10, 31, 61, 0.12);
    border-top: 1px solid var(--ks-border-light);
    padding: 2.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 1040;
  }
  .navbar.scrolled ~ .megamenu-panel,
  .navbar.scrolled + .megamenu-backdrop + .megamenu-panel {
    top: 64px;
  }
  .megamenu-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .megamenu-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
  }
  .megamenu-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .megamenu-item {
    display: flex;
    gap: 0.85rem;
    align-items: start;
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
  }
  .megamenu-item:hover {
    background: var(--ks-blue-glow);
    color: inherit;
    text-decoration: none;
  }
  .megamenu-item .mm-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    background: var(--ks-blue-glow);
    color: var(--ks-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
  }
  .megamenu-item:hover .mm-icon {
    background: var(--ks-blue);
    color: white;
  }
  .megamenu-item .mm-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ks-text-heading);
    margin-bottom: 0.15rem;
    display: block;
  }
  .megamenu-item .mm-desc {
    font-size: 0.8rem;
    color: var(--ks-text-body);
    line-height: 1.4;
    display: block;
  }
  .megamenu-featured {
    background: linear-gradient(135deg, var(--ks-navy) 0%, var(--ks-navy-dark) 100%);
    border-radius: 0.75rem;
    padding: 1.75rem;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .megamenu-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30,92,219,0.4) 0%, transparent 70%);
    pointer-events: none;
  }
  .megamenu-featured > * { position: relative; z-index: 1; }
  .megamenu-featured .badge-mm {
    display: inline-block;
    background: rgba(30,92,219,0.25);
    color: #93c5fd;
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .megamenu-featured h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .megamenu-featured p {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
  .megamenu-featured .btn {
    width: 100%;
  }
}

/* Mobile accordion behavior */
@media (max-width: 991px) {
  /* Open menu must scroll: with the services accordion expanded inline,
     the content can exceed viewport height under the fixed-top navbar. */
  .navbar-collapse {
    max-height: calc(100vh - var(--navbar-height, 70px) - 1rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .megamenu-trigger {
    width: 100%;
    text-align: left;
    padding: 0.5rem 0;
    justify-content: space-between;
  }
  .megamenu-panel {
    /* MOBILE FIX: Override desktop fixed positioning */
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    box-shadow: none !important;
    border-top: none !important;
    z-index: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    /* Original mobile styles */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--ks-bg-section);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 0;
  }
  .megamenu-panel.open {
    max-height: 800px;
    padding: 0.75rem 0.5rem;
  }
  .megamenu-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .megamenu-services {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .megamenu-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.65rem 0.85rem;
    text-decoration: none;
    color: var(--ks-text-heading);
    border-radius: 0.5rem;
    font-size: 0.92rem;
  }
  .megamenu-item:hover,
  .megamenu-item:focus {
    background: white;
    color: var(--ks-blue);
  }
  .megamenu-item .mm-icon {
    width: 28px;
    height: 28px;
    border-radius: 0.4rem;
    background: var(--ks-blue-glow);
    color: var(--ks-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  .megamenu-item .mm-title {
    font-weight: 500;
  }
  .megamenu-item .mm-desc { display: none; }
  .megamenu-featured {
    display: none;
  }
}

/* Backdrop for desktop megamenu */
.megamenu-backdrop {
  position: fixed;
  top: var(--navbar-height, 72px);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 31, 61, 0.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 1035;
}
.megamenu-backdrop.open {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .megamenu-backdrop { display: none; }
}
/* ============ COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(10, 31, 61, 0.25);
  padding: 1.5rem;
  z-index: 1050;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--ks-text-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cookie-banner h4 i {
  color: var(--ks-blue);
}
.cookie-banner p {
  font-size: 0.88rem;
  color: var(--ks-text-body);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-banner .cookie-actions .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  flex: 1;
  min-width: 100px;
}
.cookie-banner a {
  color: var(--ks-blue);
  text-decoration: underline;
}
@media (max-width: 575px) {
  .cookie-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .cookie-banner .cookie-actions .btn {
    flex: 1 1 100%;
  }
}

/* ============ STICKY MOBILE CTA + WHATSAPP ============ */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.floating-actions.visible {
  opacity: 1;
  visibility: visible;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(10, 31, 61, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 31, 61, 0.35);
  text-decoration: none;
}
.floating-btn.whatsapp {
  background: #25D366;
  color: white;
}
.floating-btn.whatsapp:hover { color: white; }
.floating-btn.cta {
  background: var(--ks-blue);
  color: white;
  width: auto;
  border-radius: 999px;
  padding: 0 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  height: 50px;
  gap: 0.5rem;
}
.floating-btn.cta:hover { color: white; }
.floating-btn.cta i {
  font-size: 1.1rem;
}
/* Pulse animation for WhatsApp */
.floating-btn.whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: pulse-whatsapp 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-whatsapp {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============ SCROLL FADE-IN ANIMATIONS ============ */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in-up, .fade-in-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonial-card {
  background: white;
  border: 1px solid var(--ks-border-light);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 31, 61, 0.08);
}
.testimonial-rating {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: #f59e0b;
  font-size: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ks-text-body);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}
.testimonial-text::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--ks-blue);
  line-height: 0;
  margin-right: 0.25rem;
  vertical-align: -0.5rem;
  font-family: Georgia, serif;
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--ks-border-light);
  padding-top: 1.25rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ks-blue-glow);
  color: var(--ks-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author-info .name {
  font-weight: 600;
  color: var(--ks-text-heading);
  font-size: 0.95rem;
  display: block;
}
.testimonial-author-info .company {
  font-size: 0.82rem;
  color: var(--ks-text-body);
}

/* ============ FOUNDER SECTION ============ */
.founder-section {
  position: relative;
  overflow: hidden;
}
.founder-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 31, 61, 0.08);
  border: 1px solid var(--ks-border-light);
}
.founder-image-wrap {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: var(--ks-navy);
  overflow: hidden;
}
.founder-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.founder-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(10, 31, 61, 0.3) 100%);
  pointer-events: none;
}
.founder-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ks-text-heading);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.founder-badge i {
  color: var(--ks-blue);
}
.founder-content {
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .founder-content { padding: 2rem 1.5rem; }
  .founder-image-wrap { min-height: 380px; }
}
.founder-content .eyebrow {
  display: inline-block;
  background: var(--ks-blue-glow);
  color: var(--ks-blue);
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.founder-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ks-text-heading);
  margin-bottom: 0.4rem;
  letter-spacing: -0.5px;
}
.founder-title {
  font-size: 1rem;
  color: var(--ks-blue);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.founder-bio {
  color: var(--ks-text-body);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.founder-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--ks-bg-section);
  border-radius: 0.75rem;
}
@media (max-width: 480px) {
  .founder-highlights { grid-template-columns: 1fr; }
}
.founder-highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--ks-text-heading);
  font-weight: 500;
}
.founder-highlight i {
  color: var(--ks-blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.founder-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.founder-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: white;
  border: 1px solid var(--ks-border-light);
  border-radius: 0.65rem;
  color: var(--ks-text-heading);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.founder-contact-link:hover {
  background: var(--ks-blue);
  color: white;
  border-color: var(--ks-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 92, 219, 0.25);
  text-decoration: none;
}
.founder-contact-link i {
  font-size: 1.1rem;
}
.founder-contact-link.linkedin:hover { background: #0a66c2; border-color: #0a66c2; }
.founder-contact-link.whatsapp:hover { background: #25D366; border-color: #25D366; }

/* ============ NEWSLETTER FOOTER ============ */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}
.footer-newsletter h5 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer-newsletter .newsletter-input-group {
  display: flex;
  gap: 0.5rem;
}
.footer-newsletter input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  padding: 0.6rem 0.85rem;
  color: white;
  font-size: 0.88rem;
  min-width: 0;
}
.footer-newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--ks-blue);
  background: rgba(255, 255, 255, 0.12);
}
.footer-newsletter button {
  background: var(--ks-blue);
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.footer-newsletter button:hover {
  background: var(--ks-blue-light);
}
.footer-newsletter .newsletter-msg {
  font-size: 0.82rem;
  margin-top: 0.6rem;
  display: none;
}
.footer-newsletter .newsletter-msg.success {
  color: #4ade80;
  display: block;
}
.footer-newsletter .newsletter-msg.error {
  color: #fca5a5;
  display: block;
}

/* ============ FAQ PAGE ============ */
.faq-category {
  margin-bottom: 2.5rem;
}
.faq-category-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ks-text-heading);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.faq-category-title i {
  color: var(--ks-blue);
}

/* ============ NEWSLETTER CTA BAND (above footer) ============ */
.newsletter-band {
  background: linear-gradient(135deg, var(--ks-navy) 0%, var(--ks-navy-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
}
.newsletter-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,92,219,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-band::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(30,92,219,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-band .container { position: relative; z-index: 1; }
.newsletter-band .nb-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.85rem;
  background: rgba(30, 92, 219, 0.2);
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.newsletter-band h3 {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.newsletter-band p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.newsletter-band .nb-form {
  display: flex;
  gap: 0.65rem;
}
.newsletter-band .nb-form input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.65rem;
  padding: 0.85rem 1.1rem;
  color: white;
  font-size: 0.95rem;
  min-width: 0;
}
.newsletter-band .nb-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.newsletter-band .nb-form input[type="email"]:focus {
  outline: none;
  border-color: var(--ks-blue-light);
  background: rgba(255, 255, 255, 0.15);
}
.newsletter-band .nb-form button {
  background: var(--ks-blue);
  border: none;
  border-radius: 0.65rem;
  padding: 0.85rem 1.75rem;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.newsletter-band .nb-form button:hover {
  background: var(--ks-blue-light);
  transform: translateY(-2px);
}
.newsletter-band .nb-msg {
  font-size: 0.88rem;
  margin-top: 0.75rem;
  display: none;
}
.newsletter-band .nb-msg.success { color: #4ade80; display: block; }
.newsletter-band .nb-msg.error { color: #fca5a5; display: block; }
.newsletter-band .nb-privacy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.75rem;
}
@media (max-width: 767px) {
  .newsletter-band { padding: 2.5rem 0; text-align: center; }
  .newsletter-band .nb-icon { margin-left: auto; margin-right: auto; }
  .newsletter-band .nb-form { flex-direction: column; }
  .newsletter-band h3 { font-size: 1.35rem; }
}

/* ============ PORTAL / LOGIN LINK (navbar) ============ */
.nav-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem !important;
  color: var(--ks-text-heading) !important;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--ks-border-light);
  border-radius: 0.55rem;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-portal-link:hover {
  border-color: var(--ks-blue);
  color: var(--ks-blue) !important;
  background: var(--ks-blue-glow);
}
.nav-portal-link i { font-size: 1rem; }
@media (max-width: 991px) {
  .nav-portal-link {
    justify-content: center;
    margin: 0.5rem 0;
    width: 100%;
  }
}

/* Footer portal block */
.footer-portal {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-portal:hover {
  background: rgba(30, 92, 219, 0.15);
  border-color: var(--ks-blue);
}
.footer-portal i {
  font-size: 1.3rem;
  color: #93c5fd;
}
.footer-portal .fp-text { line-height: 1.3; }
.footer-portal .fp-title {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}
.footer-portal .fp-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

/* ============ COMPANY DROPDOWN (navbar) ============ */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: #4a5568 !important;
  padding: 0.5rem 0.85rem !important;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--ks-blue) !important; }
.nav-dropdown-trigger .chevron-sm { font-size: 0.75rem; transition: transform 0.2s; }
.nav-dropdown-trigger.active .chevron-sm { transform: rotate(180deg); }

@media (min-width: 992px) {
  .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(10, 31, 61, 0.15);
    border: 1px solid var(--ks-border-light);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1040;
  }
  .nav-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
  }
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--ks-text-heading);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-item:hover {
  background: var(--ks-blue-glow);
  color: var(--ks-blue);
  text-decoration: none;
}
.nav-dropdown-item i {
  font-size: 1rem;
  color: var(--ks-blue);
  width: 20px;
  text-align: center;
}

/* Mobile: accordion style */
@media (max-width: 991px) {
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 0.5rem 0 !important; }
  .nav-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--ks-bg-section);
    border-radius: 0.5rem;
    margin: 0.25rem 0;
  }
  .nav-dropdown-menu.open { max-height: 400px; padding: 0.5rem; }
  .nav-dropdown-item { padding: 0.6rem 0.75rem; }
}

/* Smaller navbar CTA button */
.navbar .btn-primary.btn-sm {
  padding: 0.5rem 1rem !important;
  font-size: 0.88rem;
}

/* ============ FOOTER LEGAL NOTICE ============ */
.footer-legal-notice {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer-legal-notice p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}
.footer-legal-notice strong {
  color: rgba(255, 255, 255, 0.6);
}
/* ============ PAYMENT PLANS BADGE (Pricing Cards) ============ */
.tier-payment-plan {
  font-size: 0.82rem;
  color: var(--ks-text-body);
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.tier-payment-plan strong {
  color: var(--ks-blue);
  font-weight: 600;
}
.tier-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ks-blue-glow);
  color: var(--ks-blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(30, 92, 219, 0.2);
}
.tier-payment-badge i {
  font-size: 0.9rem;
}

/* Payment plans info section (κάτω από το pricing section) */
.payment-plans-info {
  background: var(--ks-bg-section);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin: 3rem auto 0;
  max-width: 900px;
  text-align: center;
  border: 1px solid var(--ks-border-light);
}
.payment-plans-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ks-text-heading);
  margin: 0 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.payment-plans-info h4 i {
  color: var(--ks-blue);
  font-size: 1.2rem;
}
.payment-plans-info p {
  color: var(--ks-text-body);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}
.payment-plans-info .plans-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.payment-plans-info .plan-pill {
  background: white;
  border: 1px solid var(--ks-border-light);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ks-text-heading);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.payment-plans-info .plan-pill i {
  color: var(--ks-blue);
}
