/* =========================================
   TekLan Hosting — Design System
   ========================================= */

:root {
  --tk-indigo:       #0254fa;
  --tk-indigo-dark:  #0143cc;
  --tk-indigo-glow:  rgba(2,84,250,.22);
  --tk-indigo-tint:  rgba(2,84,250,.09);
  --tk-navy:         #141e35;
  --tk-navy-2:       #1a2740;
  --tk-navy-3:       #202e48;
  --tk-text:         #1a2035;
  --tk-muted:        #64748b;
  --tk-border:       #e2e8f0;
  --tk-light:        #f8fafc;
  --tk-radius:       12px;
  --tk-radius-sm:    8px;
  --tk-shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --tk-shadow-md:    0 4px 24px rgba(0,0,0,.08);
  --tk-shadow-brand: 0 8px 32px rgba(2,84,250,.32);
}

body { font-family:'Inter',sans-serif; color:var(--tk-text); -webkit-font-smoothing:antialiased; }
a { transition:color .15s; }

/* ── Spacer ── */
.page-header-spacer { height: 80px; }

/* ============================================================
   NAVBAR overrides
   ============================================================ */
.navbar-brand img { transition:opacity .2s; }
.navbar-brand img:hover { opacity:.8; }

/* ============================================================
   HERO
   ============================================================ */
.tk-hero {
  background: var(--tk-navy-3);
  position: relative;
  padding: 130px 0 100px;
}
.tk-hero::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%, rgba(2,84,250,.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 70%, rgba(2,84,250,.12) 0%, transparent 60%);
  pointer-events:none;
}
.tk-hero::after {
  content:'';
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events:none;
}
.tk-hero-inner { position:relative; z-index:2; }

#tk-globe {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 48px rgba(2,84,250,0.45));
}
#tk-globe canvas { width: 100% !important; height: 100% !important; }

/* Hero typography */
.tk-hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.tk-hero-headline span { color: var(--tk-indigo); }

.tk-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Eyebrow */
.tk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--tk-indigo-tint);
  border: 1px solid rgba(2,84,250,.25);
  color: var(--tk-indigo);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .32rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.tk-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tk-indigo);
  flex-shrink: 0;
}

/* Hero trust row */
.tk-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.tk-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
}
.tk-trust-item strong { color: rgba(255,255,255,.7); font-weight: 600; }

/* ============================================================
   SECTION LABEL
   ============================================================ */
.tk-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tk-indigo);
  margin-bottom: .75rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-tk-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--tk-indigo);
  color: #fff !important;
  border: none;
  border-radius: var(--tk-radius-sm);
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, transform .12s;
  cursor: pointer;
}
.btn-tk-primary:hover {
  background: var(--tk-indigo-dark);
  box-shadow: var(--tk-shadow-brand);
  transform: translateY(-1px);
}
.btn-tk-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: rgba(255,255,255,.75) !important;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--tk-radius-sm);
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.5rem;
  text-decoration: none;
  transition: background .18s, border-color .18s;
  cursor: pointer;
}
.btn-tk-outline:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.35);
  color: #fff !important;
}
.btn-tk-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: var(--tk-indigo) !important;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius-sm);
  font-weight: 600;
  font-size: .875rem;
  padding: .6rem 1.25rem;
  text-decoration: none;
  transition: background .18s, border-color .18s;
}
.btn-tk-ghost:hover {
  background: var(--tk-indigo-tint);
  border-color: rgba(2,84,250,.3);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.tk-stats { display:flex; flex-wrap:wrap; gap:0; }
.tk-stat-item {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid var(--tk-border);
  background: #fff;
}
.tk-stat-item:last-child { border-right: none; }
.tk-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--tk-indigo);
  line-height: 1;
  margin-bottom: .3rem;
}
.tk-stat-lbl { font-size: .78rem; color: var(--tk-muted); }

/* ============================================================
   SERVICE CARDS  (homepage)
   ============================================================ */
.tk-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--tk-border);
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  overflow: hidden;
}
@media(max-width:767px) { .tk-service-grid { grid-template-columns: 1fr; } }
@media(min-width:768px) and (max-width:991px) { .tk-service-grid { grid-template-columns: repeat(2, 1fr); } }

.tk-service-cell {
  background: #fff;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background .18s;
}
.tk-service-cell:hover { background: var(--tk-light); }
.tk-service-cell:hover .tk-sc-arrow { transform: translateX(3px); }
.tk-sc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--tk-indigo-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--tk-indigo);
  font-size: .95rem;
  margin-bottom: 1.1rem;
}
.tk-sc-title { font-weight: 700; font-size: .95rem; color: var(--tk-text); margin-bottom: .35rem; }
.tk-sc-desc { font-size: .82rem; color: var(--tk-muted); line-height: 1.6; margin-bottom: .9rem; }
.tk-sc-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--tk-indigo);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.tk-sc-arrow { transition: transform .18s; }

/* ============================================================
   FEATURE ROW  (inner pages intro)
   ============================================================ */
.tk-feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .1px;
  background: var(--tk-border);
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  overflow: hidden;
}
.tk-feature-cell {
  background: #fff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.tk-feature-cell:hover { background: var(--tk-light); }
.tk-fc-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--tk-indigo-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--tk-indigo);
  font-size: .8rem;
  flex-shrink: 0;
}
.tk-fc-title { font-weight: 600; font-size: .85rem; color: var(--tk-text); margin: 0 0 .15rem; }
.tk-fc-sub   { font-size: .78rem; color: var(--tk-muted); margin: 0; }

/* ============================================================
   WHY SECTION  (homepage)
   ============================================================ */
.tk-why-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media(max-width:767px) { .tk-why-row { grid-template-columns: 1fr; } }
.tk-why-item { display:flex; gap:1rem; align-items:flex-start; }
.tk-wi-num {
  font-size: .7rem;
  font-weight: 800;
  color: var(--tk-indigo);
  letter-spacing: .06em;
  padding-top: .15rem;
  min-width: 22px;
}
.tk-wi-title { font-weight: 700; font-size: .95rem; color: var(--tk-text); margin-bottom: .3rem; }
.tk-wi-desc  { font-size: .875rem; color: var(--tk-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.tk-pricing {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.tk-pricing:hover { box-shadow: var(--tk-shadow-md); transform: translateY(-3px); }
.tk-pricing-head { padding: 1.75rem 2rem 1.5rem; border-bottom: 1px solid var(--tk-border); }
.tk-pricing-head h5 { font-weight: 700; color: var(--tk-text); margin-bottom: .2rem; font-size: 1rem; }
.tk-pricing-head .sub { font-size: .8rem; color: var(--tk-muted); margin-bottom: 1.25rem; }
.tk-pricing-amount { display:flex; align-items:flex-end; gap:.1rem; }
.tk-pricing-amount .currency { font-size: .95rem; font-weight: 700; color: var(--tk-muted); padding-bottom: .45rem; }
.tk-pricing-amount .amount   { font-size: 2.5rem; font-weight: 800; color: var(--tk-text); line-height: 1; }
.tk-pricing-amount .period   { font-size: .78rem; color: var(--tk-muted); padding-bottom: .5rem; }
.tk-pricing-body { padding: 1.5rem 2rem; flex: 1; }
.tk-pricing-foot { padding: 0 2rem 1.75rem; }

.tk-pricing-featured {
  border: 2px solid var(--tk-indigo);
  transform: translateY(-6px);
  box-shadow: var(--tk-shadow-brand);
}
.tk-pricing-featured .tk-pricing-amount .amount { color: var(--tk-indigo); }
.tk-pricing-badge {
  display: inline-block;
  background: var(--tk-indigo);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: 100px;
  margin-bottom: .7rem;
}
@media(max-width:991px) { .tk-pricing-featured { transform: none; } }

/* ============================================================
   FEATURE CHECK LIST
   ============================================================ */
.feature-check-list { list-style:none; padding:0; margin:0; }
.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .85rem;
  color: var(--tk-text);
  border-bottom: 1px solid var(--tk-border);
}
.feature-check-list li:last-child { border-bottom: none; }
.feature-check-list li i { color: var(--tk-indigo); font-size: .7rem; margin-top: .3rem; flex-shrink:0; }

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.tk-locations { background: var(--tk-light); }
.location-card {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-top: 3px solid var(--tk-indigo);
  border-radius: var(--tk-radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--tk-shadow-sm);
  transition: box-shadow .2s, transform .2s, border-top-color .2s;
  height: 100%;
}
.location-card:hover {
  box-shadow: var(--tk-shadow-md);
  transform: translateY(-3px);
}
.lc-flag { font-size: 2.2rem; line-height: 1; flex-shrink: 0; }
.location-card h6 { margin: 0 0 .2rem; font-weight: 700; font-size: .9rem; color: var(--tk-text); }
.location-card p  { margin: 0; font-size: .775rem; color: var(--tk-muted); line-height: 1.6; }
.lc-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: .42rem;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: lc-pulse 2.4s ease-out infinite;
}
.lc-dot-pending {
  background: #f59e0b;
  animation: none;
}
@keyframes lc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ============================================================
   DARK CARD
   ============================================================ */
.tk-dark-card {
  background: var(--tk-navy-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--tk-radius);
  padding: 2rem 2rem;
}
.tk-dark-card h5, .tk-dark-card h4 { color: #fff; font-weight: 700; }
.tk-dark-card p { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.7; }

/* ============================================================
   INLINE CARD  (generic white card)
   ============================================================ */
.tk-card {
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.tk-card:hover { box-shadow: var(--tk-shadow-md); transform: translateY(-3px); border-color: rgba(2,84,250,.18); }
.tk-card h5 { font-weight: 700; color: var(--tk-text); margin-bottom: .4rem; font-size: 1rem; }
.tk-card p  { color: var(--tk-muted); font-size: .875rem; line-height: 1.65; }
.tk-link {
  color: var(--tk-indigo);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.tk-link:hover { text-decoration: underline; }

/* Icon used in tk-card */
.tk-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--tk-indigo-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--tk-indigo);
  font-size: .95rem;
  flex-shrink: 0;
  margin-bottom: 1.1rem;
}
.tk-icon-sm { width: 34px; height: 34px; border-radius: 8px; font-size: .8rem; margin-bottom: 0; }
.tk-icon-lg { width: 52px; height: 52px; border-radius: 13px; font-size: 1.1rem; margin-bottom: 1.25rem; }

/* ============================================================
   FEATURE ITEM (icon + text, no card border)
   ============================================================ */
.tk-feature { display:flex; align-items:flex-start; gap:.9rem; margin-bottom:1.5rem; }
.tk-feature:last-child { margin-bottom:0; }
.tk-feature h6 { font-weight:700; color:var(--tk-text); margin-bottom:.2rem; font-size:.9rem; }
.tk-feature p  { color:var(--tk-muted); font-size:.85rem; line-height:1.65; margin:0; }

/* ============================================================
   STAT BOX
   ============================================================ */
.tk-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--tk-border);
  border-radius: var(--tk-radius);
}
.tk-stat-number { font-size: 2rem; font-weight: 800; color: var(--tk-indigo); line-height: 1; }
.tk-stat-label  { font-size: .75rem; color: var(--tk-muted); margin-top: .3rem; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  display: block !important;
  padding: 3.5rem 0 2.75rem !important;
  background: var(--tk-navy) !important;
  position: relative;
  overflow: hidden;
  min-height: 0 !important;
}
.page-header::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 600px 300px at 90% 50%, rgba(2,84,250,.12) 0%, transparent 70%);
  pointer-events:none;
}
.page-header .breadcrumb {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-bottom: .5rem !important;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a,
.page-header .breadcrumb-item.active { color: rgba(255,255,255,.45) !important; font-size: .78rem; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25) !important; }
.page-header h1 { color: #fff; font-weight: 800; font-size: 2rem; margin-top: .4rem; letter-spacing: -.02em; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.tk-cta {
  background: var(--tk-navy);
  border-radius: var(--tk-radius);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.tk-cta::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(2,84,250,.18) 0%, transparent 70%);
  pointer-events:none;
}
.tk-cta h2, .tk-cta h3 { position:relative; z-index:1; }
.tk-cta p { position:relative; z-index:1; color:rgba(255,255,255,.58); }
.tk-cta .tk-cta-btns { position:relative; z-index:1; display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 38px; height: 38px;
  background: var(--tk-indigo);
  color: #fff;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  text-decoration: none;
  opacity: 0; visibility: hidden;
  transition: all .22s;
  z-index: 1000;
  box-shadow: var(--tk-shadow-brand);
}
.back-to-top.active { opacity:1; visibility:visible; }
.back-to-top:hover  { transform:translateY(-2px); color:#fff; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content h5 { color:var(--tk-text); font-weight:700; margin:2rem 0 .5rem; font-size:.95rem; }
.policy-content h5:first-child { margin-top:0; }
.policy-content p, .policy-content li { color:var(--tk-muted); font-size:.875rem; line-height:1.9; }
.policy-content a { color:var(--tk-indigo); }
.policy-content ul, .policy-content ol { padding-left:1.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.tk-footer {
  background: var(--tk-navy-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 4rem 0 0;
  margin-top: 0;
}
.tk-footer-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tk-indigo);
  margin-bottom: .9rem;
}
.tk-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tk-footer-nav li { margin-bottom: .1rem; }
.tk-footer-nav a {
  color: rgba(255,255,255,.4);
  font-size: .84rem;
  text-decoration: none;
  transition: color .15s;
  display: inline-block;
  padding: .18rem 0;
}
.tk-footer-nav a:hover { color: rgba(255,255,255,.75); }
.tk-footer-text { color: rgba(255,255,255,.4); font-size: .84rem; line-height: 1.75; }
.tk-footer-link { color: rgba(255,255,255,.4); font-size: .84rem; text-decoration: none; transition: color .15s; }
.tk-footer-link:hover { color: rgba(255,255,255,.75); }
.tk-footer-social {
  color: rgba(255,255,255,.35);
  font-size: 1rem;
  text-decoration: none;
  transition: color .15s;
}
.tk-footer-social:hover { color: rgba(255,255,255,.75); }
.tk-footer-base {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
}
.tk-footer-base p { color: rgba(255,255,255,.25); font-size: .76rem; margin: 0; }
.tk-footer-base a { color: rgba(255,255,255,.4); text-decoration: none; }
.tk-footer-base a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   OVERRIDE SOFT UI GRADIENT ICONS — site-wide
   ============================================================ */
section .icon.icon-shape[class*="bg-gradient"] {
  background: var(--tk-indigo-tint) !important;
  box-shadow: none !important;
}
section .icon.icon-shape[class*="bg-gradient"] i { color: var(--tk-indigo) !important; }
.badge[class*="bg-gradient"] {
  background: var(--tk-indigo-tint) !important;
  color: var(--tk-indigo) !important;
  box-shadow: none !important;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:767px) {
  .tk-hero   { padding: 100px 0 70px; }
  .tk-cta    { padding: 2rem 1.25rem; }
  .tk-pricing-featured { transform:none; box-shadow:var(--tk-shadow-md); }
  .page-header-spacer { height: 72px; }
  .tk-service-grid { grid-template-columns: 1fr; }
  .tk-feature-row  { grid-template-columns: 1fr; }
  .tk-why-row      { grid-template-columns: 1fr; }
}
