:root{
  --bg:#120006;
  --panel:#1b0009;
  --card:#22000c;
  --card2:#160006;
  --text:#fff5f7;
  --muted:#ffd0d8;
  --line:rgba(255,255,255,.10);
  --red:#ff1f3d;
  --gold:#f6c453;
  --accent:#ff4d6d;
  --success:#22c55e;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 24px;
  --max: 1180px;
  --ring: 0 0 0 4px rgba(71,163,255,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1100px 520px at 50% -12%, rgba(71,163,255,.18), transparent 60%),
    radial-gradient(900px 420px at 12% 10%, rgba(246,196,83,.16), transparent 55%),
    radial-gradient(900px 420px at 88% 14%, rgba(225,29,46,.14), transparent 55%),
    linear-gradient(180deg, #07080c, #060716 40%, #07080c);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit}
img{max-width:100%;height:auto;display:block}

.container{
  width:min(92%, var(--max));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  color:#000;
  border-radius:12px;
  z-index:9999;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background: rgba(18,0,6,.78);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:40px;height:40px;
  border-radius:14px;
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(135deg, rgba(255,31,61,.95), rgba(246,196,83,.70));
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  position:relative;
  overflow:hidden;
}
.brand-mark:after{
  content:"";
  position:absolute; inset:-40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(25deg);
  animation: shine 3.6s linear infinite;
}
@keyframes shine{
  0%{transform:translateX(-30%) rotate(25deg)}
  100%{transform:translateX(30%) rotate(25deg)}
}
.brand-name{
  display:flex; flex-direction:column; line-height:1.1;
}
.brand-name strong{font-size:14px;letter-spacing:.16em;text-transform:uppercase}
.brand-name span{font-size:12px;color:var(--muted)}

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  text-decoration:none;
  font-size:13px;
  color:rgba(233,236,245,.86);
  padding:10px 10px;
  border-radius:12px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  color:#fff;
  transform: translateY(-1px);
}

.header-cta{
  display:flex; align-items:center; gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.01em;
  border:1px solid rgba(255,255,255,.12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn:focus{outline:none; box-shadow: var(--ring)}
.btn:hover{transform: translateY(-2px)}
.btn-primary{
  background: linear-gradient(135deg, rgba(255,31,61,.98), rgba(255,77,109,.70));
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 18px 46px rgba(0,0,0,.55);
}
.btn-primary:hover{box-shadow: 0 22px 56px rgba(0,0,0,.62)}
.btn-ghost{
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover{background: rgba(255,255,255,.07)}

.mobile-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#fff;
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}

.hero{
  padding: 78px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(233,236,245,.90);
  font-size:12px;
  letter-spacing:.04em;
}
.kicker-dot{
  width:10px;height:10px;border-radius:99px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}
.h1{
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.03;
  margin: 14px 0 12px;
  letter-spacing: -0.03em;
}
.sub{
  color: rgba(233,236,245,.82);
  font-size: 18px;
  line-height: 1.6;
  max-width: 54ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.trust-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}
.trust-chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
}

.hero-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding: 18px;
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(480px 220px at 20% 10%, rgba(71,163,255,.18), transparent 60%),
    radial-gradient(480px 220px at 80% 30%, rgba(225,29,46,.14), transparent 55%);
  filter: blur(0px);
  pointer-events:none;
}
.hero-card > *{position:relative}
.stat-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.stat{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(7,8,12,.55);
  padding: 14px;
}
.stat strong{
  font-size: 22px;
  display:block;
}
.stat span{color:var(--muted); font-size:12px}

.section{
  padding: 78px 0;
}
.section.alt{
  background: rgba(255,255,255,.035);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.h2{
  font-size: clamp(24px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.lead{
  color: rgba(233,236,245,.82);
  font-size: 16px;
  line-height: 1.7;
  max-width: 80ch;
}
.grid-3{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.32);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.14);
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  color: rgba(233,236,245,.88);
  font-size:12px;
  margin-bottom: 10px;
}
.card h3{margin:10px 0 8px; font-size: 18px}
.card p{margin:0; color: rgba(233,236,245,.78); line-height: 1.6; font-size: 15px}

.checklist{
  margin: 16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: rgba(233,236,245,.82);
}
.check{
  width:20px;height:20px;border-radius:6px;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.35);
  display:inline-flex;
  align-items:center;justify-content:center;
  flex:0 0 auto;
  margin-top: 2px;
}

.steps{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  padding: 16px;
}
.step .num{
  width:34px;height:34px;border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(71,163,255,.16);
  border: 1px solid rgba(71,163,255,.30);
  margin-bottom: 10px;
  font-weight:800;
}
.step h3{margin:0 0 8px; font-size: 16px}
.step p{margin:0; color: rgba(233,236,245,.78); font-size: 14px; line-height: 1.6}

.cta{
  border-radius: 28px;
  background:
    radial-gradient(580px 220px at 20% 30%, rgba(71,163,255,.22), transparent 60%),
    radial-gradient(620px 240px at 80% 60%, rgba(225,29,46,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding: 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.cta p{margin:0; color: rgba(233,236,245,.82)}
.cta .cta-actions{display:flex; gap:12px; flex-wrap:wrap}

.site-footer{
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(18,0,6,.78);
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 13px;
}
.footer-grid strong{color: rgba(233,236,245,.88)}

.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr; gap: 18px}
  .grid-3{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr 1fr}
  .nav{display:none}
  .mobile-toggle{display:inline-flex}
  .nav.open{
    display:flex;
    position:absolute;
    left:0; right:0;
    top:64px;
    background: rgba(18,0,6,.92);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding: 10px 4%;
    flex-direction:column;
    gap: 6px;
  }
  .nav.open a{padding:12px 12px}
}

@media (max-width: 520px){
  .steps{grid-template-columns: 1fr}
  .header-inner{padding:12px 0}
}

/* Packages */
.pkg-img{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  margin: 10px 0 12px;
  box-shadow: 0 12px 34px rgba(0,0,0,.25);
}
.pkg-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* Modal */
.ctk-modal{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}
.ctk-modal.open{display:block}
.ctk-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}
.ctk-modal__panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1000px, 92vw);
  height: min(760px, 86vh);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,0,4,.85);
  box-shadow: 0 30px 90px rgba(0,0,0,.75);
  overflow: hidden;
}
.ctk-modal__close{
  position:absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor:pointer;
  z-index: 2;
}
.ctk-modal__close:hover{background: rgba(255,255,255,.10)}
.ctk-modal__frame{
  position:absolute;
  inset: 0;
  width:100%;
  height:100%;
  border: 0;
}


/* Brand logo */
.brand-logo{
  width:40px;
  height:40px;
  border-radius:14px;
  object-fit:cover;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

/* Animated hero title */
.animated-title{
  position:relative;
}
.animated-title .title-accent{
  background: linear-gradient(90deg, rgba(255,31,61,.98), rgba(246,196,83,.80), rgba(255,77,109,.90), rgba(255,31,61,.98));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleShine 3.2s ease-in-out infinite;
}
@keyframes titleShine{
  0%{background-position: 0% 50%}
  50%{background-position: 100% 50%}
  100%{background-position: 0% 50%}
}
.animated-title:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-14px;
  width: 140px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,31,61,.95), rgba(246,196,83,.70));
  box-shadow: 0 10px 30px rgba(255,31,61,.18);
  transform-origin:left;
  animation: underlineGrow 1.2s ease forwards;
}
@keyframes underlineGrow{
  from{transform:scaleX(.35); opacity:.55}
  to{transform:scaleX(1); opacity:1}
}

@media (prefers-reduced-motion: reduce){
  .animated-title .title-accent{animation:none}
  .animated-title:after{animation:none}
}


/* Advertise modal */
.ctk-adv{position:fixed; inset:0; z-index:2100; display:none;}
.ctk-adv.open{display:block}
.ctk-adv__backdrop{position:absolute; inset:0; background: rgba(0,0,0,.72); backdrop-filter: blur(6px);}
.ctk-adv__panel{
  position:absolute; left:50%; top:50%;
  transform: translate(-50%, -50%);
  width:min(900px, 92vw);
  height:min(760px, 86vh);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,0,4,.88);
  box-shadow: 0 30px 90px rgba(0,0,0,.78);
  overflow:hidden;
}
.ctk-adv__close{
  position:absolute; right:12px; top:12px;
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff; cursor:pointer; z-index:2;
}
.ctk-adv__close:hover{background: rgba(255,255,255,.10)}
.ctk-adv__body{height:100%; overflow:auto; padding:22px 18px 18px;}
.ctk-form{margin-top:16px}
.ctk-form__grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.ctk-field{display:grid; gap:8px; color: rgba(255,245,247,.92); font-size:13px}
.ctk-field span{color: rgba(255,208,216,.92)}
.ctk-field input, .ctk-field select, .ctk-field textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,245,247,.96);
  padding: 12px 12px;
  outline:none;
}
.ctk-field input:focus, .ctk-field select:focus, .ctk-field textarea:focus{box-shadow: var(--ring); border-color: rgba(255,255,255,.18)}
.ctk-field textarea{resize: vertical; min-height: 120px}
.ctk-form__actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:14px}
.ctk-form__status{color: rgba(255,208,216,.92); font-size:13px}
@media (max-width: 720px){
  .ctk-form__grid{grid-template-columns: 1fr}
}


/* Elementor compatibility */
body.elementor-page .site-main{padding:0}
body.elementor-page .site-main .section{padding-top: 10px; padding-bottom: 10px;}
/* Let Elementor control widths inside its own containers */
body.elementor-page .site-main .container{max-width: var(--max);}
/* If Elementor uses its full-width template, avoid extra padding */
body.elementor-page .site-main .container.container--elementor{width:100%; max-width:100%; padding-left:0; padding-right:0;}


/* Job modal */
.ctk-job{position:fixed; inset:0; z-index:2200; display:none;}
.ctk-job.open{display:block}
.ctk-job__backdrop{position:absolute; inset:0; background: rgba(0,0,0,.72); backdrop-filter: blur(6px);}
.ctk-job__panel{
  position:absolute; left:50%; top:50%;
  transform: translate(-50%, -50%);
  width:min(980px, 92vw);
  height:min(820px, 88vh);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,0,4,.90);
  box-shadow: 0 30px 90px rgba(0,0,0,.80);
  overflow:hidden;
}
.ctk-job__close{
  position:absolute; right:12px; top:12px;
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff; cursor:pointer; z-index:2;
}
.ctk-job__close:hover{background: rgba(255,255,255,.10)}
.ctk-job__body{height:100%; overflow:auto; padding:22px 18px 18px;}


/* Anchor offset for sticky header */
:target{scroll-margin-top: 90px;}
